1不link实现,不会报错。
符号表里面引用的其他库的符号是U
2link到静态库
ar rcs libmylib.a
T
3link到动态库
g++-fPIC -o testso.o -c testso.cpp # COmpile
g++testso.o -shared -o libtestso.so
U
ldd so会提示有依赖库。
1不link实现,不会报错。
符号表里面引用的其他库的符号是U
2link到静态库
ar rcs libmylib.a
T
3link到动态库
g++-fPIC -o testso.o -c testso.cpp # COmpile
g++testso.o -shared -o libtestso.so
U
ldd so会提示有依赖库。