From: Doug Coleman Date: Mon, 30 Mar 2020 22:31:35 +0000 (-0500) Subject: build.sh: Support MINGW64 as 64bit Windows. X-Git-Tag: 0.99~3359 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=905e2cfb6b513a44f1a2835dc4710f806e8531b5 build.sh: Support MINGW64 as 64bit Windows. This is for msys2 64bit mode. --- diff --git a/build.sh b/build.sh index bfa7e8c331..fd6587267d 100755 --- a/build.sh +++ b/build.sh @@ -274,6 +274,7 @@ find_os() { *CYGWIN_NT*) OS=windows;; *CYGWIN*) OS=windows;; MINGW32*) OS=windows;; + MINGW64*) OS=windows;; MSYS_NT*) OS=windows;; *darwin*) OS=macosx;; *Darwin*) OS=macosx;;