From 81ae0a47c3d0ae6ddc02791adca56a83d8861732 Mon Sep 17 00:00:00 2001 From: bmss Date: Mon, 12 Aug 2024 10:22:29 +0100 Subject: [PATCH] getMSYS2GccAsThirdParty: Added all other necessary packages for the separate GCC installation to work. --- getMSYS2GccAsThirdParty | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/getMSYS2GccAsThirdParty b/getMSYS2GccAsThirdParty index d6419feb..948e460c 100644 --- a/getMSYS2GccAsThirdParty +++ b/getMSYS2GccAsThirdParty @@ -98,6 +98,18 @@ do PACKAGES="${PACKAGES} ${package}-${GCC_VERSION}-${MSYS2_GCC_PATCH}" done +# Had to hard-code the package versions here +for package in \ + gmp-6.2.1-3 \ + mpfr-4.2.0.p4-1 \ + crt-git-10.0.0.r258.g530c58e17-2 \ + winpthreads-git-10.0.0.r258.g530c58e17-1 \ + libwinpthread-git-10.0.0.r258.g530c58e17-1 \ + windows-default-manifest-6.4-4 +do + PACKAGES="${PACKAGES} ${package}" +done + for package in ${PACKAGES} do echo "Handling package '${package}'"