我正在尝试编写一个共享库并尝试将其链接以形成最终的可执行文件。
生成文件
mystring.out:main.c libmystring.so
gcc -I. -L/home/pradheep/myexploration/mystring/ -lmystring main.c -o mystring.out
libmystring.so:mystring.o
gcc -shared -Wl,-soname,libmystring.so -o libmystring.so mystring.o
libmystring.a:mystring.o
ar -r libmystring.a mystring.o
mystring.o:mystring.h mystring.c
gcc -Wall -g -c -fPIC -I. mystring.c
clean:
rm *.o
rm *.a
rm *.so
rm *.out
这是错误消息:
gcc -I. -L/home/pradheep/myexploration/mystring/ -lmystring main.c -o mystring.out
/tmp/ccS9UDPS.o: In function `main':
main.c:(.text+0x2d): undefined reference to `mystrcpy'
main.c:(.text+0x5a): undefined reference to `mystrncpy'
main.c:(.text+0x87): undefined reference to `mystrncpy'
main.c:(.text+0xa4): undefined reference to `mystrlen'
collect2: ld returned 1 exit status
make: *** [mystring.out] Error 1
我已经导出了LD_LIBRARY_PATH
echo $LD_LIBRARY_PATH
/home/pradheep/myexploration/mystring
我的 libmystring.so 的输出
000004ca T mystrncpy
0000045c T mystrcpy
我错过了什么?
解决方案:
问题是库 -l 使用的顺序。它应该在源文件之后使用,Dayal rai 指出的正确顺序是 gcc -I。-L/home/pradheep/myexploration/mystring/main.c -lmystring -o mystring.out 万岁,它可以工作。