Top "Mingw" questions

MinGW (Minimalist GNU for Windows) is a native software port of the GNU Compiler Collection (GCC) and GNU Binutils for use in the development of native Microsoft Windows applications.

Using Component Object Model (COM) on non-Microsoft platforms

I'm regularly running into similar situations : I have a bunch of COM .DLLs (no IDL files) which I need to …

c++ com cygwin mingw wine
boost test - 'undefined reference' errors

I have two simple files: runner.cpp: #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE Main #include <boost/…

c++ unit-testing boost mingw boost-test
GLib-GIO-ERROR**: No GSettings schemas are installed on the system

Unfortunately, I am using Windows (Windows7 x64). With MinGW compiler in Code::Blocks and GTK+3.6.4. I compiled manually all the …

c gtk mingw gtk3
gmpxx.h: no such file or directory

I just installed a brand new copy of mingw (32 bit) downloading it from the official project page from Sourceforge. I …

c++ mingw gmp mingw32
Using GNU Scientific Library (GSL) under Windows x64 with MinGW

I have installed MinGW and MSYS on Microsoft Windows (64bit), inside directory C:\MinGW (MSYS directory is C:\MinGW\msys\1.0). …

windows mingw linker-errors gsl
OpenGL GLFW: undefined reference to 'glfwInit'

I realize that this question has been asked many times on StackOverflow and on other sites; after reviewing these resources …

c++ opengl mingw glfw
Step by step instruction to install Rust and Cargo for mingw with Msys2?

I tried to install Rust on Cygwin but failed to be able link with mingw. Now I am trying to …

windows rust mingw msys2
How to reduce the size of executable produced by MinGW g++ compiler?

I have a trivial "Hello world" C++ program that is compiled to 500kB executable by MinGW g++ compiler under Win …

c++ optimization mingw executable
Is isnan in the std:: namespace? More in general, when is std:: necessary, optional or to be avoided?

With Mingw 4.7.2, I have a library that doesn't compile because of a call to isnan. The compiler says "everything will …

c++ mingw portability c++98
How to enable experimental C++11 concurrency features in MinGW?

When trying to compile the following code #include <thread> #include <iostream> void foo() { std::cout <&…

c++ gcc concurrency c++11 mingw