proc precompilation - linking results in symbolic referncing errors


 
Thread Tools Search this Thread
Operating Systems Solaris proc precompilation - linking results in symbolic referncing errors
# 1  
Old 05-20-2009
proc precompilation - linking results in symbolic referncing errors

I can compile and link a piece of code on Solaris 2.6 .. I want the same thing to be done on Solaris8..

I am getting symbolic refernce errors while linking... Errors looks to be with proc symbols defination.. Any ideas ??

fgs_lib/finder_dbl.pkg_shr_def->lib/finder_dbl.so
expand_file "cc -G -z defs -o lib/finder_dbl.so `printenv LIB_PATH` " "OBJ,OLB,EXE" "o,a,so" lib/finder_dbl.so $pkg_source " $xtra -lm -lc" "__DYNAMIC=T"
Undefined first referenced
symbol in file
SQLEnvGet /users/ora1040/work/finder2/fgs_mg/mg_message.o
SQLSvcCtxGet /users/ora1040/work/finder2/fgs_mg/mg_message.o
OCILdaToSvcCtx /users/ora1040/work/finder2/fgs_mg/mg_message.o
OCIHandleAlloc /users/ora1040/work/finder2/fgs_mg/mg_message.o
oerhms /users/ora1040/work/finder2/fgs_mg/mg_message.o
sqlcxt /users/ora1040/work/finder2/fgs_tu/tu_uom.o
OCIAttrGet /users/ora1040/work/finder2/fgs_mg/mg_message.o
OCIHandleFree /users/ora1040/work/finder2/fgs_mg/mg_message.o
OCISvcCtxToLda /users/ora1040/work/finder2/fgs_mg/mg_message.o
oracle_login /users/ora1040/work/finder2/fgs_mg/mg_message.o
ld: fatal: Symbol referencing errors. No output written to lib/finder_dbl.so
Error status returned = 1
Aborting BUILD
parvati%
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

I want to add a variable for the results from the formula of one variable and results of another var

Good morning all, This is the file name in question OD_Orders_2019-02-19.csv I am trying to create a bash script to read into files with yesterdays date on the file name while retaining the rest of the files name. I would like for $y to equal, the name of the file with a formula output with... (2 Replies)
Discussion started by: Ibrahim A
2 Replies

2. UNIX for Advanced & Expert Users

CentOS 6.8 with Rocks Cluster: ldconfig is not a symbolic link errors

Any help appreciated just logging in to this server which is a front end for Rocks Cluster 6.1.1. Getting the below errors: ldconfig ldconfig: /usr/lib/libX11.so.6 is not a symbolic link ldconfig: /usr/lib/libjpeg.so.62 is not a symbolic link ldconfig: /usr/lib/libpng12.so.0 is not a symbolic... (3 Replies)
Discussion started by: RobbieTheK
3 Replies

3. Programming

Linker errors linking to .a files on OS X

Basically my problem is that when I try to compile anything using ./configure && make, it fails because of linker errors. I can reproduce the behavior I'm getting as follows: I have the two following files main.c: #include <stdio.h> extern void func(void); int main(int argc, char... (5 Replies)
Discussion started by: MarshallBanana
5 Replies

4. Shell Programming and Scripting

Can ctag and cscope support recording search results and displaying the history results ?

Hello , When using vim, can ctag and cscope support recording search results and displaying the history results ? Once I jump to one tag, I can use :tnext to jump to next tag, but how can I display the preview search result? (0 Replies)
Discussion started by: 915086731
0 Replies

5. UNIX for Dummies Questions & Answers

_/proc/stat vs /proc/uptime

Hi, I am trying to calculate the CPU Usage by getting the difference between the idle time reported by /proc/stat at 2 different intervals. Now the 4th entry in the first line of /proc/stat will give me the 'idle time'. But I also came across /proc/uptime that gives me 2 entries : 1st one as the... (0 Replies)
Discussion started by: coderd
0 Replies

6. UNIX for Dummies Questions & Answers

is linking possible?

how would i link 2 files together? is it the same as copying? (1 Reply)
Discussion started by: trob
1 Replies

7. UNIX for Dummies Questions & Answers

Major OS errors/Bash errors help!!!!

Hi all, dummy here.... I have major errors on entering the shell. On login I get: -bash: dircolors: command not found -bash: tr: command not found -bash: fgrep: command not found -bash: grep: command not found -bash: grep: command not found -bash: id: command not found -bash: [: =: unary... (12 Replies)
Discussion started by: wcmmlynn
12 Replies

8. AIX

Adapter Errors and Link Errors

$ errpt | more IDENTIFIER TIMESTAMP T C RESOURCE_NAME DESCRIPTION 3074FEB7 0802050205 T H fscsi1 ADAPTER ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR 3074FEB7 0802050205 T H fscsi0 ADAPTER ERROR B8113DD1 ... (2 Replies)
Discussion started by: mcastill66
2 Replies

9. UNIX for Advanced & Expert Users

Adapter Errors and Link Errors

$ errpt | more IDENTIFIER TIMESTAMP T C RESOURCE_NAME DESCRIPTION 3074FEB7 0802050205 T H fscsi1 ADAPTER ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR B8113DD1 0802050205 T H fcs1 LINK ERROR 3074FEB7 0802050205 T H fscsi0 ADAPTER ERROR B8113DD1 ... (0 Replies)
Discussion started by: mcastill66
0 Replies

10. Programming

Linking problem while linking to shared library

Hi I'm getting ld: fatal: option -h and building a dynamic executable are incompatible ld: fatal: Flags processing errors When I run ld -shared -L/usr/dt/lib -lDtSvc -o builtin.so Workspace.o after running gcc -fPIC -I/usr/X11R6/include -I/usr/dt/include -c Workspace.c I'm... (6 Replies)
Discussion started by: laho
6 Replies
Login or Register to Ask a Question
dlerror(3C)															       dlerror(3C)

NAME
dlerror - get diagnostic information SYNOPSIS
[flag ... ] file ... [library] ... DESCRIPTION
is one of a family of routines that give the user direct access to the dynamic linking facilities (using the option on the compiler or com- mand line). returns a null-terminated character string (with no trailing newline) that describes the last error that occurred during dynamic linking processing. If no dynamic linking errors have occurred since the last invocation of returns NULL. Thus, invoking second time, immediately following a prior invocation, results in NULL being returned. MULTITHREAD USAGE
This routine is thread-safe. WARNINGS
The messages returned by may reside in a static buffer that is overwritten on each call to Application code should not write to this buf- fer. Programs wishing to preserve an error message should make their own copies of that message. SEE ALSO
dlclose(3C), dlopen(3C), dlsym(3C). Texts and Tutorials: (See the option) (See manuals(5) for ordering information) dlerror(3C)