|
想试试totem-pps ,于是需要安装gstreamer-pps-git,在解决依赖关系的时候,需要编译安装一个libppswrapper的包。在编译这个包的时候出现了问题。- checking whether pps libraris is available... no
- checking whether pps 32bit libraris is available... no
- configure: error: 'couldn't find pps libraries.
复制代码 于是,查看config.log文档发现。- configure:15176: checking whether pps 32bit libraris is available
- configure:15198: g++ -o conftest -g -O2 -m32 conftest.cpp -lppsapi -lppsbase -lppssg -lppsvodres -lppsfds -lppsvodnet >&5
- /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../libstdc++.so when searching for -lstdc++
- /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../libstdc++.a when searching for -lstdc++
- /usr/bin/ld: skipping incompatible /usr/lib/libstdc++.so when searching for -lstdc++
- /usr/bin/ld: skipping incompatible /usr/lib/libstdc++.a when searching for -lstdc++
- [color="red"]/usr/bin/ld: cannot find -lstdc++[/color]
复制代码 ld.so.conf:- #
- # /etc/ld.so.conf
- #
- # End of file
- /usr/lib/libfakeroot
- /opt/lib32/lib
- /opt/lib32/usr/lib
- /opt/lib32/opt/qt/lib
- /opt/kde/lib
复制代码 问题是我安装了lib32库的,而且也在ld.so.conf里面添加了相应的路径,貌似从查找路径上面没有看到查找过lib32库的痕迹。
请知道的朋友解释一下。 |
|