Search results
- If you don't need additional packages you shouldn't install them. But MinGW is a bit outdated. It's better to switch to MinGW-w64, which exists for both 32-bit and 64-bit Windows.
stackoverflow.com/questions/70895499/should-i-install-mingw32-base-from-the-mingw-installation-manager
Nov 7, 2011 · To be honest, C++ should be handled with MS Visual Studio. If you want to make cross-platform or Unix apps, use GCC. GCC works and can be used with any IDE other than Visual Studio. Even Visual Studio Code can use GCC. Code::Blocks, Eclipse IDE for C/C++ developers, CLion, Notepad++ and even the good ol' tool we've always known, Notepad works ...
I do all of my development from Visual Studio using CMake. I can compile using MSVC from windows, gcc10/gcc9 from WSL or clang (can't remember the version) from the FreeBSD box. As of VS 2019 version 16.8 (10NOV20), MSVC is C11/C17 compliant.
For mingw, you want to download and install MSYS2. Using the builtin terminal, search for gcc pacman -Ss gcc. You can install gcc for "mingw32", "mingw64", or "ucrt64"; I always use "ucrt64" pacman -S ucrt64/mingw-w64-ucrt-x86_64-gcc.
In this tutorial, you configure Visual Studio Code to use the GCC C++ compiler (g++) and GDB debugger from mingw-w64 to create programs that run on Windows. After configuring VS Code, you will compile, run, and debug a Hello World program.
Dec 15, 2019 · To execute the C programs with MinGW, we use the popular IDE called Code::Blocks, about which more will be shared later in this article. As mentioned earlier, to execute the program in Cygwin, we use a version of GCC, modified for use on Cygwin.
Nov 5, 2015 · 1 Answer. Sorted by: 5. The names are quite clear to me: cygwin32-gcc-g++ is a compiler for 32 bit cygwin. gcc-g++ is the basic 64 bit compiler (you probably must install this one). mingw-gcc-g++ is a 32 bit compiler for native 32 bit Windows. mingw64-x86_64-gcc-g++ is a 64 bit compiler for native 64 bit Windows.
Aug 17, 2020 · With the Minimalist GNU for Windows (MinGW) project, you can download and install the GNU Compiler Collection (GCC) along with several other essential GNU components to enable GNU Autotools on your Windows computer.