From cdcd1e71e027d6891e9ee9278cb2483f1a2c0a46 Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 11 Dec 2024 19:56:11 +1300 Subject: [PATCH] doc/README: updated MSYS2 install instructions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31394997..8fef0644 100644 --- a/README.md +++ b/README.md @@ -179,8 +179,9 @@ pacman -S mingw-w64-ucrt-x86_64-{go,gcc,pkg-config} export GOROOT=/ucrt64/lib/go # Needed only if this is the first time installing Go in MSYS2. Otherwise it would be automatically applied when opening a new Bash terminal. # Install Qt -pacman -S mingw-w64-ucrt-x86_64-qt5-base # For Qt 5 -pacman -S mingw-w64-ucrt-x86_64-qt6-base # For Qt 6 +pacman -S mingw-w64-ucrt-x86_64-qt5-base # For Qt 5 (UCRT64 GCC toolchain) +pacman -S mingw-w64-ucrt-x86_64-qt6-base # For Qt 6 (UCRT64 GCC toolchain) +pacman -S mingw-w64-clang-x86_64-qt6-base # For Qt 6 (CLANG64 toolchain) go build -ldflags "-s -w -H windowsgui" ```