我在基于ARM的Linux系统上安装了Qt 5.6.1。 PATH变量和LD_LIBRARY_PATH变量包含相关QT目录的路径:
export LD_LIBRARY_PATH=/usr/local/cuda-6.5/lib:/usr/local/Qt-5.6.1/lib:/usr/lib/arm-linux-gnueabihf/gstreamer-1.0
export PATH=/usr/local/cuda-6.5/bin:/usr/local/Qt-5.6.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/sbin:/bin:/usr/bin
现在,我想从源代码编译gstreamer-plugins-bad 1.6.4,当我运行配置脚本时,它永远不会用Qt配置它。消息是:
configure: *** checking feature: Qt elements ***
configure: *** for plug-ins: qt ***
checking for QT... no
configure: *** These plugins will not be built: qt
我尝试使用--enable-qt调用configure脚本,但也无济于事。我还将/usr/local/Qt-5.6.1/lib/pkgconfig
中找到的pkg-config文件复制到/usr/lib/pkgconfig
,但再次无济于事。
如何在插件中启用qt支持?