Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Newbie's question: Pro*c compile failed: -lxa not found
This means the link step was trying to link in a file called "libxa" or something
like that (with a suffix of .so, or .a possibly). That means the ld command that
runs needs to have a -L parameter that points it to a directory where that libxa
file exists. Do you have such a file on your box anywhere (/lib, or /usr/lib,
etc)? You need to either get a hold of that file for your OS, or modify the make
file to add the -L parm to point it to where that file is on your box.
jing shen wrote:
> Hello all:
>
> I am now trying to learn how to compile proc*C programe .
>
> I write a small program to connect to db and read record out.
>
> when I try to compile it , it shows :
>
> %make -f proc.mk EXE=test OBJS="test.o"
> ld: fatal error -lxa : not found
>
> ....
>
> I don't know where a lib exist in oracle package , I have limited disk space
> to install oracle 7.3.3.0.2 .
>
> Each word will be highly appriciated .
>
> Jing Shen
> jshen_at_cad.zju.edu.cn
Received on Mon Jan 03 2000 - 08:50:35 CST
![]() |
![]() |