Sponsored Content
Top Forums UNIX for Advanced & Expert Users referenced symbol not found, how to solve? Post 33516 by champion on Wednesday 8th of January 2003 03:47:13 AM
Old 01-08-2003
Thanks RTM and nikk for your answer.

I am deadly sure that I have checked my LD_LIBRARY_PATH that it includes the path to "/opt/oracle/oradb/lib/libHotDB50.so", where the error came from.

I verified this by doing the "echo $LD_LIBRARY_PATH".

Now, it said "symbol sqlcxt: referenced symbol not found "

Please tell me where is this sqlcxt?

Is this problem because of I did not include the library path to this "sqlcxt"?

I really do not know what and where this "sqlcxt" is. If you have any idea, please let me know.

Thank you very much and have a nice day
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how can i check in csh if command found or not found ?

hello all im trying to use in sun Solaris the information received from the top command now i several machines that dont have install the top program so when im running the script im geting error saying after im running this code : set MemoryInfo = `top | grep Memory` if (... (2 Replies)
Discussion started by: umen
2 Replies

2. UNIX for Dummies Questions & Answers

No screens found problem - and I cant use keybord properly to solve!!

Title explains it already. I need to solve the problem from log files. But backspace types ^H . I dont know how to delete character. How can I mend the keybord ? (1 Reply)
Discussion started by: olddays
1 Replies

3. UNIX for Advanced & Expert Users

relocation error: yyparse referenced symbol not found

This is my set up: LD_LIBRARY_PATH=/apps/rogue_wave_sol7/workspaces/workshop6_u1/4d/lib:/apps/fu/section20/vendorLib/EMS/4.2/lib:/home/a487891/cppunit/lib:/usr/openwin/lib:/usr/lib ldd -d TestDatalinkTradeRouter libintl.so => /usr/lib/libintl.so libw.so.1 => /usr/lib/libw.so.1... (2 Replies)
Discussion started by: agilgeous
2 Replies

4. Programming

Error: Undefined Symbol ..... First referenced in file......

Hi, I am working with Solaris 5.9 and I am newbie in Socket programming and I stated working with socket programming and I copyed a simple client & server program from a website which I am attaching with this and when I am compiling these files.I am getting the error-- Please Help me to... (1 Reply)
Discussion started by: smartgupta
1 Replies

5. UNIX for Advanced & Expert Users

kernel debug:"Symbol file not found for *.ko"

When I debug vmlinux with gdb, after it connect to the target, I got below output: usbcore.ko: No such file or directory. Error while mapping shared library sections: ohci_hcd.ko: No such file or directory. Symbol file not found for usbcore.ko Symbol file not found for ohci_hcd.ko Symbol... (2 Replies)
Discussion started by: yanglei_fage
2 Replies

6. Shell Programming and Scripting

[bash] reassigning referenced variables in functions

Hello all, Problem. ---------- I'm trying to reassign a referenced variable passed to a 'local' variable in a function but the local variable refuses to be assigned the content of the referenced variable. Any ideas would be appreciated. Objective. ----------- Eliminate all $VAR... (1 Reply)
Discussion started by: ASGR
1 Replies

7. Solaris

/usr/lib/passwdutil.so.1: symbol __nsl_fgetspent_r: referenced symbol not found

deleteing post (0 Replies)
Discussion started by: dshakey
0 Replies

8. Shell Programming and Scripting

perl ref to hash with refs in it (how to get what's being referenced).

I have a reference to a hash that contains some references. I was just wondering if there was a more simplistic Way of dereferencing the contained references without having to assign them to another reference like this: my $href = shift; #some hash my $temp = $href->{element}; print... (3 Replies)
Discussion started by: mrwatkin
3 Replies

9. Homework & Coursework Questions

help me to solve it thank you

i thought about to use the commands : wc and sort and mybe more .. i need to write a bash script that recive a list of varuables kaka pele ronaldo beckham zidane messi rivaldo gerrard platini i need the program to print the longest word of the list. word in the output appears on a separate... (1 Reply)
Discussion started by: yairpg
1 Replies

10. Shell Programming and Scripting

Bash looking in different directory for file that isn't referenced in command

When I run the below bash I get the expected output, which is the sum of all matching targets less than 20 in $file1. The filename in the directory is fixed (in bold). for file1 in /home/cmccabe/Desktop/test/panel/reads/16-0000_EPIL70.txt ; do bname=`basename $file1` ... (3 Replies)
Discussion started by: cmccabe
3 Replies
reloc(4)						     Kernel Interfaces Manual							  reloc(4)

NAME
reloc - Relocation information for an object file SYNOPSIS
#include <reloc.h> DESCRIPTION
Object files have one relocation entry for each relocatable reference in the text or data. If relocation information is present, it will be in the following format. struct reloc { long r_vaddr ; /* (virtual) address of reference */ unsigned r_symndx ; /* index into symbol table */ unsigned r_type:8 ; /* relocation type */ unsigned r_extern:1 ; /* if 1 symndx is an index into the external table the external table, else symndx is a section # */ unsigned r_offset;6 ; /* for R_OP_STORE, quad based LE bit offset */ unsigned r_reserved;11; /* Must be zero */ unsigned r_size;6 ; /* R_OP_STORE, bit size */ } ; /* Relocation types */ #define R_ABS 0 #define R_REFLONG 1 #define R_REFQUAD 2 #define R_GPREL32 3 #define R_LITERAL 4 #define R_LITUSE 5 #define R_GPDISP 6 #define R_BRADDR 7 #define R_HINT 8 #define R_SREL16 9 /* self relative 16 bit offset */ #define R_SREL32 10 /* self relative 32 bit offset */ #define R_SREL64 11 /* self relative 64-bit offset */ #define R_OP_PUSH 12 /* stack[++tos] = relocate(vaddr) */ #define R_OP_STORE 13 /* vaddr(r_offset:r_size = stack[tos--] */ #define R_OP_PSUB 14 /* stack[tos] = stack[tos] - relocate(vaddr) */ #define R_OP_PRSHIFT 15 /* stack[tos] = stack[tos] >> relocate(vaddr) */ #define R_GPVALUE 16 /* Section numbers */ #define R_SN_NULL 0 #define R_SN_TEXT 1 #define R_SN_RDATA 2 #define R_SN_DATA 3 #define R_SN_SDATA 4 #define R_SN_SBSS 5 #define R_SN_BSS 6 #define R_SN_INIT 7 #define R_SN_LIT8 8 #define R_SN_LIT4 9 #define R_SN_XDATA 10 #define R_SN_PDATE 11 #define R_SN_FINI 12 #define R_SN_LITA 13 #define R_SN_ABS 14 The link editor (ld) reads each input section and performs relocation. The relocation entries direct how references found within the input section are treated. If r_extern is zero then it is a local relocation entry and then r_symndx is a section number (R_SN_*). For these entries the starting address for the section referenced by the section number is used in place of an external symbol table entry's value. For every external relocation (except R_ABS) a signed constant is added to the symbol's virtual address that the relocation entry refers to. This constant is assembled at the address being relocated. R_ABS A relocation has already been performed. R_REFLONG A 32-bit reference to the symbol's virtual address. R_REFQUAD A 64-bit reference to the symbol's virtual address. R_GPREL32 A 32-bit displacement from the global pointer to the symbol's virtual address. R_LITERAL A reference to a literal in the literal address pool as an offset from the global pointer. R_LITUSE Identifies usage of a lteral address previously loaded into a register. The r_symndx field identifies the specific usage of the register. See the Assembly Language Programmer's Guide for more information. R_GPDISP Identifies an lda/ldah instruction pair that is used to initialize a procedure's global-pointer register. The r_symndx contains a byte offset, which, when added to the r_vaddr field results in the address of the other instruction of the pair. R_BRADDR A 21-bit branch reference to the symbol's virtual address. R_HINT A 14-bit jsr hint reference to the symbol's virtual address. R_SREL16 A 16-bit self-relative reference to the symbol's virtual address. R_SREL32 A 32-bit self-relative reference to the symbols's virtual address. R_SREL64 A 64-bit self-relative reference to the symbol's virtual address. R_OP_PUSH Push symbol's virtual address on relocation expression stack. R_OP_STORE Pop value from the relocation expression stack and store at the symbol's virtual address. The r_size field determines the number of bits stored. The r_offset field designates the bit offset from the symbol to the target. R_OP_PSUB Pop value from the relocation expression stack and subtract the symbol's virtual address. The result is pushed on the relocation expression stack. R_OP_PRSHIFT Pop value from the relocation expression stack and shift right by the symbol's value. The result is pushed on the reloca- tion stack. R_GPVALUE Specifies a new gp value is to be used starting with the address specified by the r_vaddr field. The gp value is the sum of the optional header's gp_value field and the r_symndx field. The r_extern field must be zero. RELATED INFORMATION
as(1), ld(1), a.out(4), syms(4), scnhdr(4). Assembly Language Programmer's Guide delim off reloc(4)
All times are GMT -4. The time now is 12:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy