I decided to try CLion for Windows, which recommends either MinGW or Cygwin for compilation.
I installed the MSYS2 package manager into the default folder, C:\msys64
, updated it by running update-core
and pacman -Su
.
I then downloaded the MinGW64 package using pacman -S mingw-w64-x86_64-gcc
, which has been placed into C:\msys64\mingw64
.
The problem is, pacman -S mingw-w64-x86_64-gcc
currently downloads the version 5.0, which is not yet supported by CLion.
Does MSYS2 support installing older versions of packages (the MinGW version 4.9.2
should work just fine)? I tried searching for the MinGW packages using pacman -Ss mingw
, but the list is incredibly long and as I haven't worked with MinGW before, I really do not know what to choose.