MSYS2
- MSYS2 Useful first-time set-up here
Pacman
- List of all explicitly installed packages, as of 28 June 2019 here (pacman -Qe > pacman.packages.txt)
Installing Manpages
pacman -S man-db
mandb --quiet
Installing Make
pacman -S make
Installing MinGW-w64 GCC with prerequisites (64bit)
pacman -S mingw-w64-x86_64-toolchain
Installing SDL2 libraries (64bit)
pacman -S mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_gfx mingw-w64-x86_64-SDL2_image mingw-w64-x86_64-SDL2_mixer mingw-w64-x86_64-SDL2_net mingw-w64-x86_64-SDL2_ttf
Installing FLTK (64bit)
pacman -S mingw-w64-x86_64-fltk
Building FLTK from source
./configure --build=mingw32 --enable-gl --enable-threads --enable-shared --enable-localjpeg --enable-localzlib --enable-localpng LDFLAGS=-static
make
test/demo
make install
Problems and their solutions
- How to delete old packages installed by pacman in Arch Linux? here
- [SOLVED] Python error: failed to commit transaction conflicting files) here
- "Failed to commit transaction (conflicting files)" error here
Comments (1)
matthew said
at 9:47 am on Jun 28, 2018
Created page for MSYS2
You don't have permission to comment on this page.