Hi,
I'm doing the following on a HP9000 Unix server...
I have two c source files I need to compile together - one is output from the pro*c precompiler (call it ProC.c), and a non-precompiled c source file (call it Prog.c - no main(), just functions).
When I compile this as follows:
I get the following errors:
I assume there are libraries i'm missing that need to be included, or something like that. Does anyone know what I'm missing here? This is very frustrating, and unfortunately it's something I need to resolve rather quickly.
Any help greatly appreciated,
dora c
I'm doing the following on a HP9000 Unix server...
I have two c source files I need to compile together - one is output from the pro*c precompiler (call it ProC.c), and a non-precompiled c source file (call it Prog.c - no main(), just functions).
When I compile this as follows:
Code:
cc -I "/path/for/Prog.c/compilation" Prog.c ProC.c -o Executable
I get the following errors:
Code:
/usr/ccs/bin/ld: Unsatisfied symbols:
sqlorat (first referenced in ProC.o) (code)
sqlcxt (first referenced in ProC.o) (code)
I assume there are libraries i'm missing that need to be included, or something like that. Does anyone know what I'm missing here? This is very frustrating, and unfortunately it's something I need to resolve rather quickly.
Any help greatly appreciated,
dora c