我正在尝试构建一个依赖于另一个我无法控制的共享库的共享库。以下是我如何构建它:
g++ -fPIC -Wall -Wextra -O2 -g -fpermissive -Wl,--no-allow-shlib-undefined -Wl,--no-undefined \
-I$JAVA_HOME/include -I$JAVA_HOME/include/linux -I/opt/softkinetic/DepthSenseSDK/include \
-L/opt/softkinetic/DepthSenseSDK/lib \
-lDepthSense -lDepthSensePlugins -lturbojpeg -c -o NativeDs325.o \
NativeDs325.cpp
g++ -shared -o libds325.so NativeDs325.o
构建步骤很顺利,但是当我加载我的库时,它会抛出undefined symbol error
。当我查看这些库时,我发现了
$ldd -d libds325.so
linux-vdso.so.1 => (0x00007fff94bfe000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f727167d000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f7271467000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f72710a6000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7270daa000)
/lib64/ld-linux-x86-64.so.2 (0x00007f7271ba5000)
undefined symbol: _ZTIN10DepthSense9ExceptionE (./libds325.so)
undefined symbol: _ZTIN10DepthSense16EventHandlerBaseE (./libds325.so)
undefined symbol: _ZN10DepthSense7ContextD1Ev (./libds325.so)
undefined symbol: _ZN10DepthSense9DepthNodeD1Ev (./libds325.so)
当我查看我依赖的库时,我无法控制:
$nm -D libds325.so | grep _ZTIN10DepthSense9ExceptionE
U _ZTIN10DepthSense9ExceptionE
$nm -D libds325.so | grep _ZTIN10DepthSense16EventHandlerBaseE
U _ZTIN10DepthSense16EventHandlerBaseE
所以这些符号没有在我拥有的库中定义。有什么办法可以解决我的问题,还是我完全依赖图书馆的供应商?有什么我完全不知道的吗?
提前致谢
答案 0 :(得分:0)
您可以尝试找出您需要的函数签名,构建您自己的.so来定义这些符号并使用它来超越未定义的符号错误。如果你真的确定了,你可能能够对这些函数/缺失的类进行逆向工程。
但实际上,您应该使用此信息联系库提供者,并获取定义了必要符号的库。
答案 1 :(得分:0)
我在构建库时遇到了两个问题:
1)根据这个问题undefined reference to symbol even when nm indicates that this symbol is present in the shared library,必须在使用它们的对象之后列出库:
g++ NativeDs325.cpp -fPIC -Wall -Wextra -O2 -g -fpermissive -Wl,--no-allow-shlib-undefined -Wl,--no-undefined \
-I$JAVA_HOME/include -I$JAVA_HOME/include/linux -I/opt/softkinetic/DepthSenseSDK/include \
-L/opt/softkinetic/DepthSenseSDK/lib \
-lDepthSense -lDepthSensePlugins -lturbojpeg -c -o NativeDs325.o \
2)链接时,我需要添加要包含在最终共享库中的库:
g++ -shared -o libds325.so NativeDs325.o -L/opt/softkinetic/DepthSenseSDK/lib \
-lDepthSense -lDepthSensePlugins -lturbojpeg