- 论坛徽章:
- 0
|
bash-2.03$ more all.c
#include <stdio.h>;
extern void hellocpp(void);
int main(void)
{
hellocpp();
return 0;
}
bash-2.03$ more testld.cpp
#include <iostream>;
using namespace std;
void hellocpp (void)
{
cout<<"ld c++ call"<<endl;
}
bash-2.03$ env
LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:.
bash-2.03$ g++ -fpic -G -o libtestldcpp.so testld.cpp
bash-2.03$ gcc -L. -ltestldcpp all.c
Undefined first referenced
symbol in file
hellocpp /var/tmp//cc25ZfiA.o
ld: fatal: Symbol referencing errors. No output written to a.out
collect2: ld returned 1 exit status
bash-2.03$ uname -a
SunOS testsvr 5.8 Generic_108528-13 sun4u sparc SUNW,Sun-Fire-880
bash-2.03$ gcc -v
Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/3.3.2/specs
Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/l
d --disable-nls --disable-libgcj --enable-languages=c,c++
Thread model: posix
gcc version 3.3.2
他人告诉我如果是动态连接库 可以随便调的
|
|