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.

Undefined references when trying to link Qt app with my static library

I have a static library that I have built with MinGW, I am trying to link to that library from …

qt boost mingw cmake undefined-reference
How to debug DLL load failed: Invalid access to memory location

I have a MinGW64-compiled DLL (python module), which gives error when loaded: ImportError: DLL load failed: Invalid access to …

debugging dll mingw mingw-w64
Building GLEW 1.7.0 on Windows using MinGW

It's been asked quite alot before: How do I compile the GLEW 1.7.0 source on Windows with MinGW? The goal being …

mingw glew
cuda with mingw - updated

We have been developing our code in linux, but would like to compile a windows executable. The old non-gpu version …

cuda mingw nvcc
Using msys shell in Visual Studio Code

I'm getting into Visual Studio Code as I like its lightweight design and flexibility. It has an integrated terminal that …

shell mingw visual-studio-code msys
Crash reporting for MinGW applications

I have a c++ application compiled with MinGW for which I've been receiving crash complaints from customers. So, besides heavily …

c++ windows mingw crash-reports
Static linking with libwinpthread

I try to build program with static linked toolchain libraries. I pass: LDFLAGS="-Wl,-Bstatic -lwinpthread -Wl,-Bdynamic -static-libgcc -static-libstdc++" …

mingw static-linking mingw-w64
How can I make C++0x and __STRICT_ANSI__ get along?

I need to use popen in a project, but I get: error: 'popen' was not declared in this scope It …

c++ gcc c++11 mingw gnu
_stricmp with mingw and c++0x not existent?

I'm currently trying to use googletest with MinGW and -std=c++0x but it complains that _stricmp is not declared …

c++ c++11 mingw googletest
Convert from MinGW .a to VC++ .lib

I have an old library (in C++) that I'm only able to build on MinGW+MSYS32 on Windows. From that …

c++ mingw msys