我已经阅读了几篇关于这个的帖子。
但是他们并没有从我这里解决。
请看资料
brew install pkg-config
完成安装然后
Rangers-iMac:dash ranger$ which pkg-config
/usr/local/bin/pkg-config
这意味着安装了 pkg-config。
Rangers-iMac:dash ranger$ ./configure
...
checking for exit in -lboost_chrono-mt... yes
checking whether the Boost::Unit_Test_Framework library is available... yes
checking for dynamic linked boost test... yes
configure: error: pkg-config not found.
这意味着配置找不到 pkg-config。
我认为问题出在 PATH 中,但我不知道如何解决它。
最佳答案
项目的 configure-script 似乎对 pkg-config 的位置做了假设。幸运的是,您可以使用 PKG_CONFIG 环境变量覆盖它。
export PKG_CONFIG=/path/to/pkg-config
然后又是
./configure
。关于package - mac 错误 : pkg-config not found (even if pkg-config is already installed),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46812712/