This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 64bit] automake 1.13.1-1: Fix config.guess result


Recent config.guess still detects 64bit Cygwin as x86_64-unknown-cygwin. This should probably be changed (upstream) to be consistent with i686-pc-cygwin.

$ uname -srvmo
CYGWIN_NT-6.1 1.7.18(0.263/5/3) 2013-04-10 14:35 x86_64 Cygwin

$ cygcheck -f /usr/share/automake-1.13/config.guess
automake1.13-1.13.1-1

$ /usr/share/automake-1.13/config.guess
x86_64-unknown-cygwin

Christian

--- config.guess.orig	2013-03-11 01:18:17.000000000 +0100
+++ config.guess	2013-04-12 07:19:56.583395800 +0200
@@ -847,7 +847,7 @@
 	echo ${UNAME_MACHINE}-pc-uwin
 	exit ;;
     amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
-	echo x86_64-unknown-cygwin
+	echo x86_64-pc-cygwin
 	exit ;;
     p*:CYGWIN*:*)
 	echo powerpcle-unknown-cygwin

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]