编译ffmpge时出现了以下警告: WARNING: pkg-config not found, library detection may fail. WARNING: using libx264 without pkg-config 这是由于pkg-config没有安装才会出现的警告。 使用: sudo apt install pkg-config 安装pkg-config即可,重新编译ffmpeg则可以消除上述警告。
正确配置如下:Windows(分隔符英文分号):XML/HTML code bootclasspath ${java.home}/lib/rt.jar;...
在编译ffmpeg --enable-libx265是经常遇见 ERROR: x265 not found using pkg-config,然后x265实际上是已经编译过的,这可能是因为系统没有pkg-config,导致ffmpeg找不到x265,因为安装下即可。 1. 安装 # ubuntu下 apt install pkg-config 1. 2. 2. 确认x265 pkg-config --list-all|grep x265 1. 如果可以看...
对于第(2)中情况,我们可以通过配置PKG_CONFIG_PATH环境变量来解决头文件和动态库无法找到的问题; 先介绍一下pkg-config的用法: pkg-config命令经常被用于Makefile文件用来找寻头文件和动态链接库,最常用的方式: [root@localhost ~]#pkg-config--cflags --libs libcfg-I/ext/corosync/include -L/ext/corosync/lib...
安装的是libgtk2.0-dev吗?一般就是没装全或者编译环境配置的问题
checking whether the Boost::Unit_Test_Framework library is available... yes checking for dynamic linked boost test... yes configure: error: pkg-config not found. dpkg -l | grep pkg-config shows ii pkg-config 0.29.1-0ubuntu1 amd64 manage compile and link flags for libraries...
ERROR: opus not found using pkg-config If you think configure made a mistake,makesure you are using the latest version from Git. If the latest version fails, report the problem to the ffmpeg-user@ffmpeg.org mailing list or IRC#ffmpeg on irc.libera.chat. ...
configure: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables XMEDCON_GLIB_CFLAGS and XMEDCON_GLIB_LIBS to avoid th...
在Ubuntu上使用opkg安装libcurl时遇到PKG_CONFIG_PATH问题的解决方法如下: 1. PKG_CONFIG_PATH是一个环境变量,用于指定pkg-config工具在搜索库文...
Ubuntu里配置opencv时,最后一步报错为: Package opencv was not found in the pkg-config search path. 解决方法如下: cd/usr/local/lib sudomkdirpkgconfigcdpkgconfig sudotouchopencv.pc sudo vim opencv.pc 首先建一个新的文件夹:pkgconfig 然后cd到这个文件夹下,新建opencv.pc文件; ...