Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add 3rd party libraries to MinGW?

Tags:

People also ask

How do I add a library to MinGW?

The ncurses library is available for MinGW. Simply open CMD, or run PowerShell and run mingw-get install ncurses , mingw-get will both download and install the package. Just make sure the path to your MinGW bin folder is linked to your system path, and you should be able to use ncurses without trouble.

Is MinGW a compiler or IDE?

MinGW is a compiler system based on the GNU GCC and Binutils projects that compiles and links code to be run on Win32 (Windows) systems. It provides C, C++ and Fortran compilers plus other related tools. 'MinGW' refers to the "Minimalist GNU for Windows" project.

Does MinGW contain GCC?

MinGW includes a port of the GNU Compiler Collection (GCC), GNU Binutils for Windows (assembler, linker, archive manager), a set of freely distributable Windows specific header files and static import libraries which enable the use of the Windows API, a Windows native build of the GNU Project's GNU Debugger, and ...

Does MinGW come with Msys?

MSYS provided by the mingw-w64/w32 project This package is not more than a collection of the 50+ packages provided by mingw.org.


I've just set up MinGW environment following this post

But how to add 3rd party libraries to it?