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 reference to WinMain (C++ Mingw)

currently I am trying to make a windows application using c++. For compiling my program I use Mingw GCC. Btw …

c++ winapi mingw mingw32 winmain
How do I build a Win32 app with a resource file using cmake and MinGW?

In theory, it's very easy to build a Win32 app with a resource file using cmake. In an add_executable …

winapi mingw cmake resource-files
How to uninstall msys2?

How to uninstall msys2? When I am trying to uninstall from "Programs and Features" I receive the error: What to …

mingw msys msys2
G++ Not found, I've already tried 3 different compilers

I can compile C code no problem using MinGW but for some reason I can't compile C++. I already tried …

c++ compiler-construction mingw jgrasp
error: unknown type name 'intptr_t'

I am receiving this error while compiling a C program in MinGW. As far as I know, I thought 'intptr_…

c mingw intptr
GCC on Windows - Bash on Ubuntu on Windows (WSL), CygWin, MinGW

I'm currently using windows 8.1 and was looking to install GCC. I found out that the ways to do this is …

bash gcc cygwin mingw windows-subsystem-for-linux
Compiling FFMPEG x265 not found using pkg-config

I'm trying to compile FFMPEG with x265 on Win10. I am using the latest full MinGW build from xhmikosr found …

ffmpeg mingw pkg-config libx265
Win32 API: GetLastError() with FormatMessage() prints a junk

I'm just trying to get a text of the last error with this simple code: #include <cstdio> #include &…

c++ winapi character-encoding mingw wine
Error while building Linphone for windows

I am trying to build linphone for windows by following the instructions in Readme.mingw using MinGw/Msys. There is …

mingw msys sip-server linphone
Why pow(10,5) = 9,999 in C++

Recently i write a block of code: const int sections = 10; for(int t= 0; t < 5; t++){ int i = pow(sections, 5…

c++ mingw pow