Is it OK to upgrade autoconf\config.guess?

Yaron Keren yaron.keren at gmail.com
Tue Jul 14 05:29:50 PDT 2015


We just need config.guess to handle the uname MSYS result "MSYS_NT-6.1" to
make it work.
Is the attached patch OK?



2015-07-14 14:31 GMT+03:00 Joerg Sonnenberger <joerg at britannica.bec.de>:

> On Tue, Jul 14, 2015 at 10:03:45AM +0300, Yaron Keren wrote:
> > SVN version is from 2011 and does not support MSYS2.
> >
> > Current version from GNU does support MSYS2.
> >
> >
> http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
> >
> > Is it OK to replace just this file with the new config.guess ?
>
> Last time I asked there were concerns from Chris about the GPL3 in that
> file.
>
> Joerg
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150714/9c52c3fc/attachment.html>
-------------- next part --------------
Index: autoconf/config.guess
===================================================================
--- autoconf/config.guess	(revision 242126)
+++ autoconf/config.guess	(working copy)
@@ -810,6 +810,9 @@
     *: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