common/autoconf/build-aux/config.guess

Thu, 10 Oct 2013 14:58:19 +0200

author
ihse
date
Thu, 10 Oct 2013 14:58:19 +0200
changeset 839
174a54ce39c4
parent 494
e64f2cb57d05
child 972
f3697e0783e2
permissions
-rw-r--r--

8001931: The new build system whitespace cleanup
Reviewed-by: tbell, simonis, erikj

erikj@458 1 #!/bin/sh
erikj@458 2 #
erikj@458 3 # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
erikj@458 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
erikj@458 5 #
erikj@458 6 # This code is free software; you can redistribute it and/or modify it
erikj@458 7 # under the terms of the GNU General Public License version 2 only, as
erikj@458 8 # published by the Free Software Foundation.
erikj@458 9 #
erikj@458 10 # This code is distributed in the hope that it will be useful, but WITHOUT
erikj@458 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
erikj@458 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
erikj@458 13 # version 2 for more details (a copy is included in the LICENSE file that
erikj@458 14 # accompanied this code).
erikj@458 15 #
erikj@458 16 # You should have received a copy of the GNU General Public License version
erikj@458 17 # 2 along with this work; if not, write to the Free Software Foundation,
erikj@458 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
erikj@458 19 #
erikj@458 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
erikj@458 21 # or visit www.oracle.com if you need additional information or have any
erikj@458 22 # questions.
erikj@458 23 #
ohair@425 24
ohair@478 25 # This is a wrapper for the config.guess from autoconf. The latter does not
ohair@478 26 # properly detect 64 bit systems on all platforms. Instead of patching the
ohair@478 27 # autoconf system (which might easily get lost in a future update), we wrap it
ohair@478 28 # and fix the broken property, if needed.
ohair@425 29
erikj@458 30 DIR=`dirname $0`
erikj@458 31 OUT=`. $DIR/autoconf-config.guess`
ohair@478 32
ohair@478 33 # Test and fix solaris on x86_64
erikj@458 34 echo $OUT | grep i386-pc-solaris > /dev/null 2> /dev/null
erikj@458 35 if test $? = 0; then
ohair@478 36 # isainfo -n returns either i386 or amd64
erikj@458 37 REAL_CPU=`isainfo -n`
erikj@458 38 OUT=$REAL_CPU`echo $OUT | sed -e 's/[^-]*//'`
ohair@425 39 fi
ohair@478 40
ohair@478 41 # Test and fix solaris on sparcv9
ohair@478 42 echo $OUT | grep sparc-sun-solaris > /dev/null 2> /dev/null
ohair@478 43 if test $? = 0; then
ohair@478 44 # isainfo -n returns either sparc or sparcv9
ohair@478 45 REAL_CPU=`isainfo -n`
ohair@478 46 OUT=$REAL_CPU`echo $OUT | sed -e 's/[^-]*//'`
ohair@478 47 fi
ohair@478 48
ohair@478 49 # Test and fix cygwin on x86_64
ohair@478 50 echo $OUT | grep 86-pc-cygwin > /dev/null 2> /dev/null
ohair@494 51 if test $? != 0; then
ohair@494 52 echo $OUT | grep 86-pc-mingw > /dev/null 2> /dev/null
ohair@494 53 fi
ohair@478 54 if test $? = 0; then
ohair@478 55 case `echo $PROCESSOR_IDENTIFIER | cut -f1 -d' '` in
ohair@478 56 intel64|Intel64|INTEL64|em64t|EM64T|amd64|AMD64|8664|x86_64)
ohair@478 57 REAL_CPU=x86_64
ohair@478 58 OUT=$REAL_CPU`echo $OUT | sed -e 's/[^-]*//'`
ohair@478 59 ;;
ohair@478 60 esac
ihse@839 61 fi
ohair@478 62
erikj@458 63 echo $OUT

mercurial