Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
/usr/bin/ld: cannot find -lOpenGLSupport
链接时出现上述错误。
我用谷歌搜索,无济于事。 我在哪里可以获得这个库(从源代码包/构建)?
(如果这个问题在 superuser.com 上更常见/更合适,mods 可以随意移动它)
谢谢!
操作系统是 Ubuntu Karmic。
-lOpenGLSupport似乎来自bulletphysics图书馆。
-lOpenGLSupport
bulletphysics
更多细节:
我是从源代码构建的,但是没有指定它应该构建共享库。这样做似乎已经解决了这个问题。
备查:
bulletphysics使用这些命令构建
cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=RelWithDebugInfo . -G "Unix Makefiles" make
(回答自己的问题)