You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
步骤三,scons编译,编译成功,但是bin/demo显示error while loading shared libraries: libPocoFoundation.so.64: cannot open shared object file: No such file or directory, 看来是不接受软链接,但是Sconstruct脚本里好像固定写死了只能取libxxx.so的xxx了,只能手动把用到的库CV到bin, 不知道有后缀名的情况有没有更好的,自动化的处理办法?
The text was updated successfully, but these errors were encountered:
在ubuntu20.04上编译项目,项目需要用到poco库。
步骤一:下载Poco库(我用版本为1.9.4),根据其README,./configure然后make, make install, 得到编译的二进制库:
步骤二:
在项目根据按照如何引用第三方库的教程编写SConstruct,把用到的库的lib都改成了bin文件名,因为so库都是在lib下
步骤三,scons编译,编译成功,但是bin/demo显示
error while loading shared libraries: libPocoFoundation.so.64: cannot open shared object file: No such file or directory
, 看来是不接受软链接,但是Sconstruct脚本里好像固定写死了只能取libxxx.so的xxx了,只能手动把用到的库CV到bin, 不知道有后缀名的情况有没有更好的,自动化的处理办法?The text was updated successfully, but these errors were encountered: