本文主要是介绍/usr/bin/ld: warning: libdc1394.so.22, needed by not found,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在把某盒子上的工程复制到另一个盒子上编译的时候提示如下错误
/usr/bin/ld: warning: libgtk-x11-2.0.so.0, needed by ../../../3rdparty/opencv/lib/linux_lib/libopencv_highgui.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libgdk-x11-2.0.so.0, needed by ../../../3rdparty/opencv/lib/linux_lib/libopencv_highgui.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libgdk_pixbuf-2.0.so.0, needed by ../../../3rdparty/opencv/lib/linux_lib/libopencv_highgui.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libdc1394.so.22, needed by ../../../3rdparty/opencv/lib/linux_lib/libopencv_videoio.so, not found (try using -rpath or -rpath-link)
用如下方法解决
sudo apt-get install libgtk2.0-0
sudo apt-get install libdc1394-22-dev
问题解决过程:其中最后一个错误我在网上baidu搜索/usr/bin/ld: warning: libdc1394.so.22, needed by搜不到,于是更换某搜索引擎,得到如下结果
这篇关于/usr/bin/ld: warning: libdc1394.so.22, needed by not found的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!