pkg-config: command not found, using cygwin on windows 7

空扰寡人 提交于 2019-12-01 19:36:20
Lucas

pkg-config is a piece of software that allow your computer to check installed libraries for source compilation. It may not be installed on Windows so in last scenario please check for install.

However in your case i think it is installed, but not set on the right path for linux commands. Try to type in cygwin:

$ export PKG_CONFIG_PATH=c:\\cygwin\\usr\\local\\lib\\pkgconfig 

as stated in this post.

Otherwise just abandon Windows and try to compile mergevec on an Linux VM, which is really easier (it was made for it). The only down point of this method is that you will have to do the mergevec operation (and the ones before, otherwise you may have encoding problems) under your linux space. See my previous answer for this manipulation.

If any problem don't hesitate.

run cgywin setup and in package search type pkg-config then make sure that pkg-config utility is installed. it should solve the not found command problem.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!