两个共享库(有一些相同的源代码)不能同时加载?
- 开发工具 : Sun Studio 11
- Flags : CXXFLAGS=-O2 -g
我有两个共享库, libA.so libB.so :
- /A/root.cpp /A/a.cpp 用于生成 libA.so
- /B/root .cpp /B/b.cpp用于生成libB.so
- /A/root.cpp和/B/root.cpp等同于
libA.so,libB.so在主程序运行时会在
加载libA.so时 动态加载然后加载libB.so,libB.so会打印以下调试信息: /B/b.cpp:...... /A/root.cpp : ...
当加载 libB.so 然后加载 libA.so 时,libA.so 将打印以下调试信息:
/A/a.cpp : .....
/B/root.cpp : ...
为什么?
- Development Tool : Sun Studio 11
- Flags : CXXFLAGS=-O2 -g
I have two shared libraries, libA.so libB.so :
- /A/root.cpp /A/a.cpp are used to generate libA.so
- /B/root.cpp /B/b.cpp are used to generate libB.so
- /A/root.cpp and /B/root.cpp is identifical
libA.so and libB.so will be dynamically loaded during main program running
when loading libA.so and then loading libB.so, libB.so will print the following debug info:
/B/b.cpp : .....
/A/root.cpp : ...
when loading libB.so and then loading libA.so, libA.so will print the following debug info:
/A/a.cpp : .....
/B/root.cpp : ...
Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试静态编译它,链接器会抱怨多个定义。看起来加载程序已经感到困惑并试图优雅地失败。
http://uw714doc.sco.com/en/SDK_cprog/CCCS_LinkEdit.html#CCCS_HdlMultDefdSyms
If you tried to compile this statically, the linker would complain about multiple definitions. Looks like the loader has gotten confused and is trying to fail gracefully.
http://uw714doc.sco.com/en/SDK_cprog/CCCS_LinkEdit.html#CCCS_HdlMultDefdSyms