[llvm] r242178 - Teach config.guess that MSYS exists.
Yaron Keren
yaron.keren at gmail.com
Tue Jul 14 11:33:56 PDT 2015
Author: yrnkrn
Date: Tue Jul 14 13:33:55 2015
New Revision: 242178
URL: http://llvm.org/viewvc/llvm-project?rev=242178&view=rev
Log:
Teach config.guess that MSYS exists.
We might not want to upgrade config.guess to the current
version due to the license change from GPL2 to GPL3.
Modified:
llvm/trunk/autoconf/config.guess
Modified: llvm/trunk/autoconf/config.guess
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/config.guess?rev=242178&r1=242177&r2=242178&view=diff
==============================================================================
--- llvm/trunk/autoconf/config.guess (original)
+++ llvm/trunk/autoconf/config.guess Tue Jul 14 13:33:55 2015
@@ -810,6 +810,9 @@ EOF
*:MINGW*:*)
echo ${UNAME_MACHINE}-pc-mingw32
exit ;;
+ *:MSYS*:*)
+ echo ${UNAME_MACHINE}-pc-msys
+ exit ;;
i*:windows32*:*)
# uname -m includes "-pc" on this system.
echo ${UNAME_MACHINE}-mingw32
More information about the llvm-commits
mailing list