Is there any package management system for MinGW+MSYS?

我只是一个虾纸丫 提交于 2020-01-13 07:54:29

问题


I am trying to compile some open source libraries in MinGW+MSYS. During the configure phase, I kept seeing some 3rd party libraries are missing.

For now, my solution is to download the source of the missing libraries and follow the GNU build process to compile and install them into my MinGW environment.

Is there any package management system for MinGW+MSYS to install packages easily? Just like apt-get.

I tried the mingw-get for the missing package. But it reports the error below.


回答1:


mingw-get is the (closest equivalent to apt-get) package manager for MinGW and MSYS. However, it can only manage packages which are actually available for MinGW and/or MSYS, (either because a MinGW developer has built and packaged them, or a member of the MinGW user community has contributed them).

Arbitrarily guessing what packages may be available, and even what their correct package names may be, is unlikely to be productive. Run mingw-get in its GUI mode, (if it's properly installed, just running mingw-get without arguments should start it in this mode), to see a list of packages which are actually available; if you don't see any likely candidates for what you are looking for, then it doesn't (yet) exist. In that case, you will need to either find a non-MinGW alternative build, or build it yourself, from source. (If you choose the latter option, and your build is successful, then you may wish to consider contributing it to MinGW.org).




回答2:


This works for me as a "package manager": http://mingw-w64.org/doku.php/download/win-builds



来源:https://stackoverflow.com/questions/30046903/is-there-any-package-management-system-for-mingwmsys

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