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.

Eclipse can't find my MinGW toolchain for C/C++

I have a problem. Many have the same question but I didn't find the answer. I installed gcc-4.9.0 on my …

c++ c eclipse mingw toolchain
How to build OpenSSL with MinGW in Windows?

I want to build OpenSSL in Windows with MinGW, How can I do that? Please help me. Thanks.

c++ openssl mingw msys
Eclipse CDT does not find either Cygwin or MinGW toolchain

I am having hard times to configure Eclipse Juno to for C/C++. I am a Windows user, so I …

eclipse cygwin mingw eclipse-cdt toolchain
Properly print utf8 characters in windows console

This is the way I try to do it: #include <stdio.h> #include <windows.h> using …

c++ utf-8 console mingw windows-xp-sp3
the procedure entry point __gxx_personality_v0 could not be located

Editor's Note: Error messages similar to "The procedure error point _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_ could not be …

c++ qt mingw codeblocks irrlicht
Building Boost 1.52 with MinGW

I am trying to find an authorative answer on how to build Boost 1.52 with MinGW. I found some pointers in …

boost mingw
how do I install both mingw32 and mingw64 on Linux or MacOS?

I'm having trouble installing both mingw32 and mingw64 on Linux or MacOS. I've tried many different package repositories and multiple …

mingw mingw32 mingw-w64
collect2.exe: error: ld returned 1 exit status

Please I need help when I try to compile my .C to png gcc --std=c99 -Wall -lz a.c …

c++ c gcc mingw collect
How do I build Boost 1.55 with MinGW?

I have downloaded Boost 1.55 and MinGW. The console answers me that I haven't any command. I can't understand how to …

c++ windows boost build mingw
How can I detect g++ and MinGW in C++ preprocessor?

I want to do something like: #ifdef GCC #define GetFunctionName() string("My function name is ") + __PRETTY_FUNCTION__; #endif Since I …

c++ g++ mingw c-preprocessor gnu