From: Nathanael Nerode Date: Mon, 1 Sep 2003 17:30:41 +0000 (+0000) Subject: config.host: New file. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a89ea0df26fda07c90482b44532a92898f7f47c5;p=platform%2Fupstream%2Fgcc.git config.host: New file. * config.host: New file. * config.gcc: Remove some host-specific stuff and some logic needed only for repeated invocation. * configure.in: Use config.host. * configure: Regenerate. From-SVN: r70975 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed09e54..3a052ee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2003-09-01 Nathanael Nerode + + * config.host: New file. + * config.gcc: Remove some host-specific stuff and some + logic needed only for repeated invocation. + * configure.in: Use config.host. + * configure: Regenerate. + 2003-09-01 Josef Zlomek * c-typeck.c (build_binary_op): Kill BIT_ANDTC_EXPR. diff --git a/gcc/config.gcc b/gcc/config.gcc index 5c26fdd..f3e2da1 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1,4 +1,4 @@ -# GCC host- and target-specific configuration file. +# GCC target-specific configuration file. # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. @@ -19,13 +19,11 @@ #Software Foundation, 59 Temple Place - Suite 330, Boston, MA #02111-1307, USA. -# This is the GCC host- and target-specific configuration file -# where a configuration type, as recognized and generated by config.bfd, -# is mapped to different system-specific definitions and files. This is -# invoked by the autoconf-generated configure script, called for -# host and target in that order, setting ${machine} to each. Putting it -# in a separate shell file lets us skip running autoconf when modifying -# host- and target-specific information. +# This is the GCC target-specific configuration file +# where a configuration type is mapped to different system-specific +# definitions and files. This is invoked by the autoconf-generated +# configure script. Putting it in a separate shell file lets us skip +# running autoconf when modifying target-specific information. # This file switches on the shell variable ${machine}, and also uses the # following shell variables: @@ -2176,11 +2174,7 @@ am33_2.0-*-linux*) esac # Support for --with-cpu and related options (and a few unrelated options, -# too). Only do this if $machine is the target, or we'll try to validate -# the CPU argument against the wrong machine type. - -if test "x$pass2done" = xyes -then +# too). case "x$with_cpu" in xyes | xno) echo "--with-cpu must be passed a value" 1>&2 @@ -2693,18 +2687,3 @@ then target_cpu_default=$target_cpu_default2 fi fi -fi - -# Save data on host machine in vars host_xm_file and host_xmake_file. -if test x$pass2done = x ; then - if test x$xm_file != x ; then - host_xm_file=$xm_file - fi - host_xm_defines=$xm_defines - host_xmake_file="$xmake_file" - host_extra_gcc_objs=$extra_gcc_objs - host_extra_objs=$extra_host_objs - host_exeext=$exeext - out_host_hook_obj=$host_hook_obj - pass2done=yes -fi diff --git a/gcc/config.host b/gcc/config.host new file mode 100644 index 0000000..6928daf --- /dev/null +++ b/gcc/config.host @@ -0,0 +1,611 @@ +# GCC host-specific configuration file. +# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003 +# Free Software Foundation, Inc. + +#This file is part of GCC. + +#GCC is free software; you can redistribute it and/or modify it under +#the terms of the GNU General Public License as published by the Free +#Software Foundation; either version 2, or (at your option) any later +#version. + +#GCC is distributed in the hope that it will be useful, but WITHOUT +#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +#FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +#for more details. + +#You should have received a copy of the GNU General Public License +#along with GCC; see the file COPYING. If not, write to the Free +#Software Foundation, 59 Temple Place - Suite 330, Boston, MA +#02111-1307, USA. + +# This is the GCC host-specific configuration file +# where a configuration type is mapped to different system-specific +# definitions and files. This is invoked by the autoconf-generated +# configure script. Putting it in a separate shell file lets us skip +# running autoconf when modifying host-specific information. + +# This file switches on the shell variable ${host}. As much of this as +# is reasonable should be replaced with autoconf tests in the future. + +# This file sets the following shell variables for use by the +# autoconf-generated configure script: +# +# host_xm_file List of files to include when compiling for the +# host machine. +# +# host_xm_defines List of macros to define when compiling for the +# host machine. +# +# host_xmake_file List of host-specific makefile-fragments. +# +# host_exeext Set to the suffix, if the host machine requires +# executables to have a file name suffix. +# +# host_extra_objs List of extra host-dependent objects that should +# be linked into the compiler proper. +# +# host_extra_gcc_objs List of extra host-dependent objects that should +# be linked into the gcc driver. +# +# out_host_hook_obj An object file that provides the host hooks. + +# When setting any of these variables, check to see if a corresponding +# variable is present in config.build; if so, you will likely want to +# set it in both places. + +# Default settings. +host_xm_file= +host_xm_defines= +host_xmake_file= +host_exeext= +host_extra_objs= +host_extra_gcc_objs= +out_host_hook_obj=host-default.o + +# Obsolete configurations. +case ${host} in + dummy) + if test "x$enable_obsolete" != xyes; then + echo "*** Configuration for host ${host} is obsolete." >&2 + echo "*** Specify --enable-obsolete to build it anyway." >&2 + echo "*** Support will be REMOVED in the next major release of GCC," >&2 + echo "*** unless a maintainer comes forward." >&2 + exit 1 + fi + ;; +esac + +# Unsupported hosts list. Do not put an entry in this list unless +# it would otherwise be caught by a more permissive pattern. The list +# should be in alphabetical order. +case ${host} in + alpha*-*-linux*libc1* \ + | i[34567]86-sequent-sysv \ + | i[34567]86-sequent-sysv[123]* \ + | i[34567]86-go32-* \ + | i[34567]86-*-go32* \ + | m68k-*-linux*aout* \ + | m68k-*-linux*libc1* \ + | mips64orion*-*-rtems* \ + | powerpc-*-linux*libc1* \ + | sparc-*-linux*aout* \ + | sparc-*-linux*libc1* \ + | sparc-hal-solaris2* \ + | thumb-*-* \ + | *-*-linux*coff* \ + | *-*-linux*oldld* \ + | *-*-rtemsaout* \ + | *-*-rtemscoff* \ + ) + echo "*** Configuration for host ${host} not supported" 1>&2 + exit 1 + ;; +esac + +# Machine-specific settings. +case ${host} in + alpha*-*-unicosmk*) + ;; + alpha*-*-linux*) + ;; + alpha*-*-gnu*) + ;; + alpha*-*-freebsd*) + ;; + alpha*-*-netbsd*) + ;; + alpha*-*-openbsd*) + ;; + alpha*-dec-osf[45]*) + ;; + alpha*-dec-*vms*) + host_xm_file=alpha/xm-vms.h + host_xmake_file=alpha/x-vms + host_exeext=.exe + # This removes the cpu type and manufacturer components and + # replaces "." with "_" in the operating system version. + target_alias=`echo $host | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` + prefix=/gnu + local_prefix=/gnu + ;; + arc-*-elf*) + ;; + arm-*-coff* | armel-*-coff*) + ;; + arm-semi-aof | armel-semi-aof) + ;; + arm*-*-freebsd*|strongarm*-*-freebsd*) + ;; + arm*-*-netbsdelf*) + ;; + arm*-*-netbsd*) + ;; + arm*-*-linux*) # ARM GNU/Linux with ELF + ;; + arm*-*-uclinux*) # ARM ucLinux + ;; + arm*-*-ecos-elf) + ;; + arm*-*-rtems*) + ;; + arm*-*-elf | ep9312-*-elf) + ;; + arm*-wince-pe*) + ;; + arm-*-pe*) + ;; + arm*-*-kaos*) + ;; + avr-*-*) + ;; + c4x-*-rtems* | tic4x-*-rtems*) + ;; + c4x-* | tic4x-*) + ;; + cris-*-aout) + ;; + cris-*-elf | cris-*-none) + ;; + cris-*-linux*) + ;; + d30v-*) + ;; + dsp16xx-*) + ;; + fr30-*-elf) + ;; + frv-*-elf) + ;; + h8300-*-rtems*) + ;; + h8300-*-elf*) + ;; + h8300-*-*) + ;; + hppa*64*-*-linux* | parisc*64*-*-linux*) + ;; + hppa*-*-linux* | parisc*-*-linux*) + ;; +# port not yet contributed. +# hppa*-*-openbsd*) +# ;; + hppa1.1-*-pro*) + host_xmake_file="pa/x-ada" + ;; + hppa1.1-*-osf*) + host_xmake_file="pa/x-ada" + ;; + hppa1.1-*-rtems*) + host_xmake_file="pa/x-ada" + ;; + hppa1.1-*-bsd*) + host_xmake_file="pa/x-ada" + ;; + hppa1.1-*-hpux10* | hppa2*-*-hpux10*) + host_xmake_file="pa/x-ada" + ;; + hppa1.0-*-hpux10*) + host_xmake_file="pa/x-ada" + ;; + hppa*64*-*-hpux11*) + host_xmake_file="pa/x-ada" + ;; + hppa1.1-*-hpux11* | hppa2*-*-hpux11*) + host_xmake_file="pa/x-ada" + ;; + hppa1.0-*-hpux11*) + host_xmake_file="pa/x-ada" + ;; + i370-*-opened*) # IBM 360/370/390 Architecture + host_xm_defines='FATAL_EXIT_CODE=12' + ;; + i370-*-mvs*) + host_xm_defines='FATAL_EXIT_CODE=12' + ;; + i370-*-linux*) + ;; + i[34567]86-*-darwin*) + ;; + i[34567]86-*-elf*) + ;; + i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4 + host_xm_defines="SMALL_ARG_MAX" + ;; + i[34567]86-*-netware) # Intel 80386's running netware + ;; + i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*) + host_xm_defines="SMALL_ARG_MAX" + ;; + i[34567]86-*-aout*) + ;; + i[34567]86-*-beoself* | i[34567]86-*-beos*) + ;; + i[34567]86-*-freebsd2 | i[34567]86-*-freebsd2.* | i[34567]86-*-freebsd*aout*) + ;; + i[34567]86-*-freebsd*) + ;; + x86_64-*-freebsd*) + ;; + i[34567]86-*-netbsdelf*) + ;; + i[34567]86-*-netbsd*) + ;; + x86_64-*-netbsd*) + ;; + i[34567]86-*-openbsd*) + ;; + i[34567]86-*-coff*) + ;; + i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux with a.out format + ;; + i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux + # with ELF format using the + # GNU/Linux C library 5 + ;; + i[34567]86-*-linux*) # Intel 80386's running GNU/Linux + # with ELF format using glibc 2 + # aka GNU/Linux C library 6 + ;; + x86_64-*-linux*) + ;; + i[34567]86-*-gnu*) + ;; + i[34567]86-pc-msdosdjgpp*) + host_xm_file=i386/xm-djgpp.h + host_exeext=.exe + # Shorten $target_alias for 8.3 filename conventions. + case ${target} in + *pc-msdosdjgpp*) + target_alias=djgpp + ;; + esac + ;; + i[34567]86-moss-msdos* | i[34567]86-*-moss*) + ;; + i[34567]86-*-lynxos*) + ;; + i[34567]86-*-mach*) + ;; + i[34567]86-*-nto-qnx*) + ;; + i[34567]86-*-rtems*) + ;; + i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5 + ;; + i[34567]86-*-solaris2*) + host_xm_defines="SMALL_ARG_MAX" + ;; + i[34567]86-*-sysv5*) # Intel x86 on System V Release 5 + ;; + i[34567]86-*-sysv4*) # Intel 80386's running System V Release 4 + host_xm_defines="SMALL_ARG_MAX" + ;; + i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit + ;; + i[34567]86-*-sysv*) # Intel 80386's running System V + ;; + i386-*-vsta) # Intel 80386's running VSTa kernel + host_xm_file="i386/xm-vsta.h" + ;; + i[34567]86-*-pe | i[34567]86-*-cygwin*) + host_xm_file=i386/xm-cygwin.h + host_exeext=.exe + ;; + i[34567]86-*-mingw32*) + host_xm_file=i386/xm-mingw32.h + host_xmake_file=i386/x-mingw32 + host_exeext=.exe + ;; + i[34567]86-*-uwin*) + host_exeext=.exe + ;; + i[34567]86-*-interix3*) + host_xmake_file="x-interix" + ;; + i[34567]86-*-interix*) + ;; + i[34567]86-*-kaos*) + ;; + i860-*-sysv4*) + host_xmake_file=i860/x-sysv4 + ;; + i960-*-coff*) + ;; + i960-*-rtems) + ;; + i960-*-*) # Default i960 environment. + ;; + ia64*-*-elf*) + ;; + ia64*-*-freebsd*) + ;; + ia64*-*-linux*) + ;; + ia64*-*-hpux*) + ;; + ip2k-*-elf) + ;; + iq2000*-*-elf*) + ;; + m32r-*-elf*) + ;; + # m68hc11 and m68hc12 share the same machine description. + m68hc11-*-*|m6811-*-*) + ;; + m68hc12-*-*|m6812-*-*) + ;; + m68000-hp-hpux*) # HP 9000 series 300 + ;; + m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7. + ;; + m68k-hp-hpux*) # HP 9000 series 300 + ;; + m68k-*-aout*) + ;; + m68k-*-coff*) + ;; + m68020-*-elf* | m68k-*-elf*) + ;; + m68010-*-netbsdelf* | m68k*-*-netbsdelf*) + ;; + m68k*-*-netbsd*) + ;; + m68k*-*-openbsd*) + ;; + m68k-*-sysv4*) # Motorola m68k's running system V r4 + ;; + m68k-*-linux*) # Motorola m68k's running GNU/Linux + # with ELF format using glibc 2 + # aka the GNU/Linux C library 6. + ;; + m68k-*-rtems*) + ;; + mcore-*-elf) + ;; + mcore-*-pe*) + ;; + mips-sgi-irix6*o32) # SGI System V.4., IRIX 6, O32 ABI + host_xm_file=mips/xm-iris5.h + ;; + mips-sgi-irix6*) # SGI System V.4., IRIX 6 + ;; + mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64 + host_xm_file=mips/xm-iris5.h + ;; + mips-sgi-irix5*) # SGI System V.4., IRIX 5 + host_xm_file=mips/xm-iris5.h + ;; + mips*-*-netbsd*) # NetBSD/mips, either endian. + ;; + mips64*-*-linux*) + ;; + mips*-*-linux*) # Linux MIPS, either endian. + ;; + mips*-*-openbsd*) + ;; + mipsisa32-*-elf* | mipsisa32el-*-elf*) + ;; + mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*) + ;; + mipsisa64-*-elf* | mipsisa64el-*-elf*) + ;; + mipsisa64sr71k-*-elf*) + ;; + mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*) + ;; + mips-*-elf* | mipsel-*-elf*) + ;; + mips64-*-elf* | mips64el-*-elf*) + ;; + mips64vr-*-elf* | mips64vrel-*-elf*) + ;; + mips64orion-*-elf* | mips64orionel-*-elf*) + ;; + mips*-*-rtems*) + ;; + mipstx39-*-elf* | mipstx39el-*-elf*) + ;; + mmix-knuth-mmixware) + ;; + mn10300-*-*) + ;; + ns32k-*-netbsdelf*) + echo "GCC does not yet support the ${host} host"; exit 1 + ;; + ns32k-*-netbsd*) + ;; + pdp11-*-bsd) + ;; + pdp11-*-*) + ;; + avr-*-*) + ;; +# port not yet contributed +# powerpc-*-openbsd*) +# ;; + powerpc64-*-linux*) + ;; + powerpc64-*-gnu*) + ;; + powerpc-*-beos*) + ;; + powerpc-*-darwin*) + # powerpc-darwin host support. + out_host_hook_obj=host-darwin.o + host_xmake_file=rs6000/x-darwin + ;; + powerpc*-*-freebsd*) + ;; + powerpc-*-netbsd*) + ;; + powerpc-*-chorusos*) + ;; + powerpc-*-eabispe*) + ;; + powerpc-*-eabisimaltivec*) + ;; + powerpc-*-eabisim*) + ;; + powerpc-*-elf*) + ;; + powerpc-*-eabialtivec*) + ;; + powerpc-*-eabi*) + ;; + powerpc-*-rtems*) + ;; + powerpc-*-linux*altivec*) + ;; + powerpc-*-linux*spe*) + ;; + powerpc-*-linux*) + ;; + powerpc-*-gnu-gnualtivec*) + ;; + powerpc-*-gnu*) + ;; + powerpc-wrs-vxworks*) + ;; + powerpc-wrs-windiss*) + ;; + powerpcle-*-sysv*) + ;; + powerpcle-*-elf*) + ;; + powerpcle-*-eabisim*) + ;; + powerpcle-*-eabi*) + ;; + powerpc-*-kaos*) + ;; + powerpcle-*-kaos*) + ;; + rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*) + ;; + rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*) + ;; + rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*) + ;; + rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*) + ;; + rs6000-*-lynxos*) + ;; + s390-*-linux*) + ;; + s390x-*-linux*) + ;; + sh-*-elf* | sh[2346l]*-*-elf* | sh*-*-kaos*) + ;; + sh-*-rtemself*) + ;; + sh-*-rtems*) + ;; + sh-*-linux* | sh[2346lbe]*-*-linux*) + ;; + sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \ + sh64-*-netbsd* | sh64l*-*-netbsd*) + ;; + sh-*-*) + ;; + sparc-tti-*) + ;; + sparc-*-netbsdelf*) + ;; + sparc-*-openbsd*) + ;; + sparc64-*-openbsd*) + ;; + sparc-*-elf*) + ;; + sparc-*-linux*) # SPARC's running GNU/Linux, libc6 + ;; + sparc-*-rtems*) + ;; + sparc64-*-solaris2* | sparcv9-*-solaris2*) + ;; + sparc-*-solaris2*) + ;; + sparc-*-sysv4*) + ;; + sparclite-*-coff*) + ;; + sparclite-*-elf*) + ;; + sparc86x-*-elf*) + ;; + sparc64-*-aout*) + ;; + sparc64-*-elf*) + ;; + sparc64-*-freebsd*|ultrasparc-*-freebsd*) + ;; + sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux + ;; + sparc64-*-netbsd*) + ;; + strongarm-*-elf*) + ;; + strongarm-*-pe) + ;; + strongarm-*-kaos*) + ;; + v850e-*-*) + ;; + v850-*-*) + ;; + vax-*-bsd*) # VAXen running BSD + ;; + vax-*-sysv*) # VAXen running System V + ;; + vax-*-netbsdelf*) + ;; + vax-*-netbsd*) + ;; + vax-*-openbsd*) + ;; + vax-*-ultrix*) # VAXen running ultrix + ;; + vax-*-vms*) # VAXen running VMS + echo "Host ${host} no longer supported" 1>&2 + exit 1 + ;; + vax-*-*) # VAX default entry + ;; + xscale-*-elf) + ;; + xscale-*-coff) + ;; + xstormy16-*-elf) + ;; + xtensa-*-elf*) + ;; + xtensa-*-linux*) + ;; + am33_2.0-*-linux*) + ;; + *) + echo "*** Configuration ${host} not supported" 1>&2 + exit 1 + ;; +esac diff --git a/gcc/configure b/gcc/configure index 19f23f0..5f36ab1 100755 --- a/gcc/configure +++ b/gcc/configure @@ -5139,17 +5139,13 @@ fi # Collect build-machine-specific information. . ${srcdir}/config.build +# Collect host-machine-specific information. +. ${srcdir}/config.host + target_gtfiles= -host_xm_file= -host_xm_defines= -host_xmake_file= -host_exeext= - -# Decode the host machine, then the target machine. -# For the host machine, we save the xm_file variable as host_xm_file; -# then we decode the target machine and forget everything else -# that came from the host machine. -for machine in $host $target; do + +# Collect target-machine-specific information. +for machine in $target ; do . ${srcdir}/config.gcc done @@ -5389,7 +5385,7 @@ if test -f ../intl/config.intl; then . ../intl/config.intl fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:5393: checking whether NLS is requested" >&5 +echo "configure:5389: checking whether NLS is requested" >&5 if test x"$USE_NLS" != xyes; then echo "$ac_t""no" 1>&6 else @@ -5400,7 +5396,7 @@ EOF echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:5404: checking for catalogs to be installed" >&5 +echo "configure:5400: checking for catalogs to be installed" >&5 # Look for .po and .gmo files in the source directory. CATALOGS= XLINGUAS= @@ -5450,7 +5446,7 @@ fi case $host_os in win32 | pe | cygwin* | mingw32* | uwin*) echo $ac_n "checking whether windows registry support is requested""... $ac_c" 1>&6 -echo "configure:5454: checking whether windows registry support is requested" >&5 +echo "configure:5450: checking whether windows registry support is requested" >&5 if test "x$enable_win32_registry" != xno; then cat >> confdefs.h <<\EOF #define ENABLE_WIN32_REGISTRY 1 @@ -5459,14 +5455,14 @@ EOF echo "$ac_t""yes" 1>&6 echo $ac_n "checking for library containing RegOpenKeyExA""... $ac_c" 1>&6 -echo "configure:5463: checking for library containing RegOpenKeyExA" >&5 +echo "configure:5459: checking for library containing RegOpenKeyExA" >&5 if eval "test \"`echo '$''{'ac_cv_search_RegOpenKeyExA'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_func_search_save_LIBS="$LIBS" ac_cv_search_RegOpenKeyExA="no" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5477: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_RegOpenKeyExA="none required" else @@ -5488,7 +5484,7 @@ rm -f conftest* test "$ac_cv_search_RegOpenKeyExA" = "no" && for i in advapi32; do LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5499: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_RegOpenKeyExA="-l$i" break @@ -5541,7 +5537,7 @@ esac if test "x$enable_win32_registry" != xno; then echo $ac_n "checking registry key on windows hosts""... $ac_c" 1>&6 -echo "configure:5545: checking registry key on windows hosts" >&5 +echo "configure:5541: checking registry key on windows hosts" >&5 cat >> confdefs.h <target assembler and hope that it will have the same features # as the host->target assembler we'll be using. echo $ac_n "checking what assembler to use""... $ac_c" 1>&6 -echo "configure:5804: checking what assembler to use" >&5 +echo "configure:5800: checking what assembler to use" >&5 in_tree_gas=no gcc_cv_as= gcc_cv_gas_major_version= @@ -5924,7 +5920,7 @@ esac # build->target linker and hope that it will have the same features # as the host->target linker we'll be using. echo $ac_n "checking what linker to use""... $ac_c" 1>&6 -echo "configure:5928: checking what linker to use" >&5 +echo "configure:5924: checking what linker to use" >&5 in_tree_ld=no gcc_cv_ld= gcc_cv_gld_major_version= @@ -6032,7 +6028,7 @@ esac # Figure out what nm we will be using. gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils echo $ac_n "checking what nm to use""... $ac_c" 1>&6 -echo "configure:6036: checking what nm to use" >&5 +echo "configure:6032: checking what nm to use" >&5 in_tree_nm=no if test -x nm$host_exeext; then gcc_cv_nm=./nm$host_exeext @@ -6055,7 +6051,7 @@ esac # Figure out what objdump we will be using. echo $ac_n "checking what objdump to use""... $ac_c" 1>&6 -echo "configure:6059: checking what objdump to use" >&5 +echo "configure:6055: checking what objdump to use" >&5 in_tree_objdump=no if test -x objdump$host_exeext; then gcc_cv_objdump=./objdump$host_exeext @@ -6080,7 +6076,7 @@ esac # Figure out what assembler alignment features are present. echo $ac_n "checking assembler for .balign and .p2align""... $ac_c" 1>&6 -echo "configure:6084: checking assembler for .balign and .p2align" >&5 +echo "configure:6080: checking assembler for .balign and .p2align" >&5 if eval "test \"`echo '$''{'gcc_cv_as_balign_and_p2align'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6092,7 +6088,7 @@ fi elif test x$gcc_cv_as != x; then echo '.balign 4 .p2align 2' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6096: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6092: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_balign_and_p2align=yes else @@ -6112,7 +6108,7 @@ EOF fi echo $ac_n "checking assembler for .p2align with maximum skip""... $ac_c" 1>&6 -echo "configure:6116: checking assembler for .p2align with maximum skip" >&5 +echo "configure:6112: checking assembler for .p2align with maximum skip" >&5 if eval "test \"`echo '$''{'gcc_cv_as_max_skip_p2align'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6123,7 +6119,7 @@ else fi elif test x$gcc_cv_as != x; then echo '.p2align 4,,7' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6127: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6123: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_max_skip_p2align=yes else @@ -6143,7 +6139,7 @@ EOF fi echo $ac_n "checking assembler for working .subsection -1""... $ac_c" 1>&6 -echo "configure:6147: checking assembler for working .subsection -1" >&5 +echo "configure:6143: checking assembler for working .subsection -1" >&5 if eval "test \"`echo '$''{'gcc_cv_as_subsection_m1'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6158,7 +6154,7 @@ fi .subsection -1 conftest_label2: .word 0 .previous' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6162: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6158: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then if test x$gcc_cv_nm != x; then $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1 @@ -6186,7 +6182,7 @@ EOF fi echo $ac_n "checking assembler for .weak""... $ac_c" 1>&6 -echo "configure:6190: checking assembler for .weak" >&5 +echo "configure:6186: checking assembler for .weak" >&5 if eval "test \"`echo '$''{'gcc_cv_as_weak'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6197,7 +6193,7 @@ else fi elif test x$gcc_cv_as != x; then echo ' .weak foobar' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6201: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6197: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_weak=yes else @@ -6224,7 +6220,7 @@ fi # to be safe. # The gcc_GAS_CHECK_FEATURE call just sets a cache variable. echo $ac_n "checking assembler for .hidden""... $ac_c" 1>&6 -echo "configure:6228: checking assembler for .hidden" >&5 +echo "configure:6224: checking assembler for .hidden" >&5 if eval "test \"`echo '$''{'gcc_cv_as_hidden'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6237,7 +6233,7 @@ fi elif test x$gcc_cv_as != x; then echo ' .hidden foobar foobar:' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6241: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6237: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_hidden=yes else @@ -6252,7 +6248,7 @@ echo "$ac_t""$gcc_cv_as_hidden" 1>&6 echo $ac_n "checking linker for .hidden support""... $ac_c" 1>&6 -echo "configure:6256: checking linker for .hidden support" >&5 +echo "configure:6252: checking linker for .hidden support" >&5 if eval "test \"`echo '$''{'gcc_cv_ld_hidden'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6326,7 +6322,7 @@ fi # Check if we have .[us]leb128, and support symbol arithmetic with it. echo $ac_n "checking assembler for .sleb128 and .uleb128""... $ac_c" 1>&6 -echo "configure:6330: checking assembler for .sleb128 and .uleb128" >&5 +echo "configure:6326: checking assembler for .sleb128 and .uleb128" >&5 if eval "test \"`echo '$''{'gcc_cv_as_leb128'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6343,7 +6339,7 @@ L1: .uleb128 1280 .sleb128 -1010 L2:' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6347: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6343: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then # GAS versions before 2.11 do not support uleb128, # despite appearing to. @@ -6379,7 +6375,7 @@ fi # GAS versions up to and including 2.11.0 may mis-optimize # .eh_frame data. echo $ac_n "checking assembler for eh_frame optimization""... $ac_c" 1>&6 -echo "configure:6383: checking assembler for eh_frame optimization" >&5 +echo "configure:6379: checking assembler for eh_frame optimization" >&5 if eval "test \"`echo '$''{'gcc_cv_as_eh_frame'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6422,7 +6418,7 @@ __FRAME_BEGIN__: .byte 0x4 .4byte .L1-.LFB1 .LEFDE1:' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6426: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then cat > conftest.lit < /dev/null 2>&1; } then gcc_cv_as_eh_frame=yes - elif { ac_try='$gcc_cv_as -o conftest.o --traditional-format /dev/null'; { (eval echo configure:6447: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then + elif { ac_try='$gcc_cv_as -o conftest.o --traditional-format /dev/null'; { (eval echo configure:6443: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then gcc_cv_as_eh_frame=buggy else # Uh oh, what do we do now? @@ -6468,7 +6464,7 @@ EOF fi echo $ac_n "checking assembler for section merging support""... $ac_c" 1>&6 -echo "configure:6472: checking assembler for section merging support" >&5 +echo "configure:6468: checking assembler for section merging support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_shf_merge'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6480,7 +6476,7 @@ else fi elif test x$gcc_cv_as != x; then echo '.section .rodata.str, "aMS", @progbits, 1' > conftest.s - if { ac_try='$gcc_cv_as --fatal-warnings -o conftest.o conftest.s >&5'; { (eval echo configure:6484: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as --fatal-warnings -o conftest.o conftest.s >&5'; { (eval echo configure:6480: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_shf_merge=yes else @@ -6679,7 +6675,7 @@ if test -z "$tls_first_major"; then : # If we don't have a check, assume no support. else echo $ac_n "checking assembler for thread-local storage support""... $ac_c" 1>&6 -echo "configure:6683: checking assembler for thread-local storage support" >&5 +echo "configure:6679: checking assembler for thread-local storage support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_tls'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6690,7 +6686,7 @@ else fi elif test x$gcc_cv_as != x; then echo "$conftest_s" > conftest.s - if { ac_try='$gcc_cv_as $tls_as_opt --fatal-warnings -o conftest.o conftest.s >&5'; { (eval echo configure:6694: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as $tls_as_opt --fatal-warnings -o conftest.o conftest.s >&5'; { (eval echo configure:6690: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_tls=yes else @@ -6716,7 +6712,7 @@ case "$target" in # All TARGET_ABI_OSF targets. alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*) echo $ac_n "checking assembler for explicit relocation support""... $ac_c" 1>&6 -echo "configure:6720: checking assembler for explicit relocation support" >&5 +echo "configure:6716: checking assembler for explicit relocation support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_alpha_explicit_relocs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6739,7 +6735,7 @@ fi ldah $1, d($29) !gprelhigh lda $1, d($1) !gprellow lda $29, 0($29) !gpdisp!3' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6743: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6739: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_alpha_explicit_relocs=yes else @@ -6761,14 +6757,14 @@ fi sparc*-*-*) echo $ac_n "checking assembler for .register""... $ac_c" 1>&6 -echo "configure:6765: checking assembler for .register" >&5 +echo "configure:6761: checking assembler for .register" >&5 if eval "test \"`echo '$''{'gcc_cv_as_sparc_register_op'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else gcc_cv_as_sparc_register_op=no if test x$gcc_cv_as != x; then echo '.register %g2, #scratch' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6772: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6768: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_sparc_register_op=yes else @@ -6788,14 +6784,14 @@ EOF fi echo $ac_n "checking assembler for -relax option""... $ac_c" 1>&6 -echo "configure:6792: checking assembler for -relax option" >&5 +echo "configure:6788: checking assembler for -relax option" >&5 if eval "test \"`echo '$''{'gcc_cv_as_sparc_relax'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else gcc_cv_as_sparc_relax=no if test x$gcc_cv_as != x; then echo '.text' > conftest.s - if { ac_try='$gcc_cv_as -relax -o conftest.o conftest.s >&5'; { (eval echo configure:6799: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -relax -o conftest.o conftest.s >&5'; { (eval echo configure:6795: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_sparc_relax=yes else @@ -6815,7 +6811,7 @@ EOF fi echo $ac_n "checking assembler for unaligned pcrel relocs""... $ac_c" 1>&6 -echo "configure:6819: checking assembler for unaligned pcrel relocs" >&5 +echo "configure:6815: checking assembler for unaligned pcrel relocs" >&5 if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6828,7 +6824,7 @@ foo: .align 4 .byte 0 .uaword %r_disp32(foo)' > conftest.s - if { ac_try='$gcc_cv_as -K PIC -o conftest.o conftest.s >&5'; { (eval echo configure:6832: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -K PIC -o conftest.o conftest.s >&5'; { (eval echo configure:6828: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then if test x$gcc_cv_ld != x \ && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then @@ -6851,7 +6847,7 @@ EOF echo $ac_n "checking assembler for unaligned pcrel relocs against hidden symbols""... $ac_c" 1>&6 -echo "configure:6855: checking assembler for unaligned pcrel relocs against hidden symbols" >&5 +echo "configure:6851: checking assembler for unaligned pcrel relocs against hidden symbols" >&5 if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel_hidden'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6866,7 +6862,7 @@ else .hidden foo foo: .skip 4' > conftest.s - if { ac_try='$gcc_cv_as -K PIC -o conftest.o conftest.s >&5'; { (eval echo configure:6870: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -K PIC -o conftest.o conftest.s >&5'; { (eval echo configure:6866: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \ && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \ @@ -6899,7 +6895,7 @@ fi fi # unaligned pcrel relocs echo $ac_n "checking assembler for offsetable %lo()""... $ac_c" 1>&6 -echo "configure:6903: checking assembler for offsetable %lo()" >&5 +echo "configure:6899: checking assembler for offsetable %lo()" >&5 if eval "test \"`echo '$''{'gcc_cv_as_sparc_offsetable_lo10'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6908,7 +6904,7 @@ else echo '.text or %g1, %lo(ab) + 12, %g1 or %g1, %lo(ab + 12), %g1' > conftest.s - if { ac_try='$gcc_cv_as -xarch=v9 -o conftest.o conftest.s >&5'; { (eval echo configure:6912: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -xarch=v9 -o conftest.o conftest.s >&5'; { (eval echo configure:6908: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then if test x$gcc_cv_objdump != x \ && %gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \ @@ -6934,7 +6930,7 @@ fi i[34567]86-*-* | x86_64-*-*) echo $ac_n "checking assembler for filds and fists mnemonics""... $ac_c" 1>&6 -echo "configure:6938: checking assembler for filds and fists mnemonics" >&5 +echo "configure:6934: checking assembler for filds and fists mnemonics" >&5 if eval "test \"`echo '$''{'gcc_cv_as_ix86_filds_fists'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6945,7 +6941,7 @@ else fi elif test x$gcc_cv_as != x; then echo 'filds mem; fists mem' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6949: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6945: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_ix86_filds_fists=yes else @@ -6967,7 +6963,7 @@ fi # This one is used unconditionally by i386.[ch]; it is to be defined # to 1 if the feature is present, 0 otherwise. echo $ac_n "checking assembler for GOTOFF in data""... $ac_c" 1>&6 -echo "configure:6971: checking assembler for GOTOFF in data" >&5 +echo "configure:6967: checking assembler for GOTOFF in data" >&5 if eval "test \"`echo '$''{'gcc_cv_as_ix86_gotoff_in_data'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6982,7 +6978,7 @@ fi nop .data .long .L0@GOTOFF' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6986: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:6982: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_ix86_gotoff_in_data=yes else @@ -7003,7 +6999,7 @@ EOF ia64*-*-*) echo $ac_n "checking assembler for ltoffx and ldxmov relocs""... $ac_c" 1>&6 -echo "configure:7007: checking assembler for ltoffx and ldxmov relocs" >&5 +echo "configure:7003: checking assembler for ltoffx and ldxmov relocs" >&5 if eval "test \"`echo '$''{'gcc_cv_as_ia64_ltoffx_ldxmov_relocs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7017,7 +7013,7 @@ fi addl r15 = @ltoffx(x#), gp ;; ld8.mov r16 = [r15], x#' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7021: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7017: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_ia64_ltoffx_ldxmov_relocs=yes else @@ -7047,7 +7043,7 @@ fi mfcr 3,128" echo $ac_n "checking assembler for mfcr field support""... $ac_c" 1>&6 -echo "configure:7051: checking assembler for mfcr field support" >&5 +echo "configure:7047: checking assembler for mfcr field support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_powerpc_mfcrf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7058,7 +7054,7 @@ else fi elif test x$gcc_cv_as != x; then echo "$conftest_s" > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7062: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7058: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_powerpc_mfcrf=yes else @@ -7080,7 +7076,7 @@ fi mips*-*-*) echo $ac_n "checking assembler for explicit relocation support""... $ac_c" 1>&6 -echo "configure:7084: checking assembler for explicit relocation support" >&5 +echo "configure:7080: checking assembler for explicit relocation support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_mips_explicit_relocs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7091,7 +7087,7 @@ else fi elif test x$gcc_cv_as != x; then echo ' lw $4,%gp_rel(foo)($4)' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7091: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_mips_explicit_relocs=yes else @@ -7137,7 +7133,7 @@ if test x"$insn" != x; then .loc 1 3 0 $insn" echo $ac_n "checking assembler for dwarf2 debug_line support""... $ac_c" 1>&6 -echo "configure:7141: checking assembler for dwarf2 debug_line support" >&5 +echo "configure:7137: checking assembler for dwarf2 debug_line support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_dwarf2_debug_line'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7149,7 +7145,7 @@ else fi elif test x$gcc_cv_as != x; then echo "$conftest_s" > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7153: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7149: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then # ??? This fails with non-gnu grep. Maybe use objdump? if grep debug_line conftest.o > /dev/null 2>&1; then @@ -7171,7 +7167,7 @@ echo "$ac_t""$gcc_cv_as_dwarf2_debug_line" 1>&6 # by DW_AT_decl_file. Approximate this test by testing if # the assembler bitches if the same index is assigned twice. echo $ac_n "checking assembler for buggy dwarf2 .file directive""... $ac_c" 1>&6 -echo "configure:7175: checking assembler for buggy dwarf2 .file directive" >&5 +echo "configure:7171: checking assembler for buggy dwarf2 .file directive" >&5 if eval "test \"`echo '$''{'gcc_cv_as_dwarf2_file_buggy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7179,7 +7175,7 @@ else if test x$gcc_cv_as != x; then echo ' .file 1 "foo.s" .file 1 "bar.s"' > conftest.s - if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7183: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5'; { (eval echo configure:7179: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_dwarf2_file_buggy=yes else @@ -7202,7 +7198,7 @@ EOF fi echo $ac_n "checking assembler for --gdwarf2 option""... $ac_c" 1>&6 -echo "configure:7206: checking assembler for --gdwarf2 option" >&5 +echo "configure:7202: checking assembler for --gdwarf2 option" >&5 if eval "test \"`echo '$''{'gcc_cv_as_gdwarf2_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7214,7 +7210,7 @@ else fi elif test x$gcc_cv_as != x; then echo "$insn" > conftest.s - if { ac_try='$gcc_cv_as --gdwarf2 -o conftest.o conftest.s >&5'; { (eval echo configure:7218: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as --gdwarf2 -o conftest.o conftest.s >&5'; { (eval echo configure:7214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then gcc_cv_as_gdwarf2_flag=yes else @@ -7234,7 +7230,7 @@ EOF fi echo $ac_n "checking assembler for --gstabs option""... $ac_c" 1>&6 -echo "configure:7238: checking assembler for --gstabs option" >&5 +echo "configure:7234: checking assembler for --gstabs option" >&5 if eval "test \"`echo '$''{'gcc_cv_as_gstabs_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7246,12 +7242,12 @@ else fi elif test x$gcc_cv_as != x; then echo "$insn" > conftest.s - if { ac_try='$gcc_cv_as --gstabs -o conftest.o conftest.s >&5'; { (eval echo configure:7250: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as --gstabs -o conftest.o conftest.s >&5'; { (eval echo configure:7246: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then # The native Solaris 9/Intel assembler doesn't understand --gstabs # and warns about it, but still exits successfully. So check for # this. - if { ac_try='$gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null'; { (eval echo configure:7255: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + if { ac_try='$gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null'; { (eval echo configure:7251: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then : else gcc_cv_as_gstabs_flag=yes fi @@ -7273,7 +7269,7 @@ fi fi echo $ac_n "checking linker read-only and read-write section mixing""... $ac_c" 1>&6 -echo "configure:7277: checking linker read-only and read-write section mixing" >&5 +echo "configure:7273: checking linker read-only and read-write section mixing" >&5 gcc_cv_ld_ro_rw_mix=unknown if test $in_tree_ld = yes ; then if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2 \ @@ -7312,7 +7308,7 @@ fi echo "$ac_t""$gcc_cv_ld_ro_rw_mix" 1>&6 echo $ac_n "checking linker PT_GNU_EH_FRAME support""... $ac_c" 1>&6 -echo "configure:7316: checking linker PT_GNU_EH_FRAME support" >&5 +echo "configure:7312: checking linker PT_GNU_EH_FRAME support" >&5 gcc_cv_ld_eh_frame_hdr=no if test $in_tree_ld = yes ; then if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 12 -o "$gcc_cv_gld_major_version" -gt 2 \ @@ -7334,7 +7330,7 @@ fi echo "$ac_t""$gcc_cv_ld_eh_frame_hdr" 1>&6 echo $ac_n "checking linker position independent executable support""... $ac_c" 1>&6 -echo "configure:7338: checking linker position independent executable support" >&5 +echo "configure:7334: checking linker position independent executable support" >&5 gcc_cv_ld_pie=no if test $in_tree_ld = yes ; then if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 15 -o "$gcc_cv_gld_major_version" -gt 2 \ @@ -7359,7 +7355,7 @@ echo "$ac_t""$gcc_cv_ld_pie" 1>&6 case "$target" in mips*-*-*) echo $ac_n "checking whether libgloss uses STARTUP directives consistently""... $ac_c" 1>&6 -echo "configure:7363: checking whether libgloss uses STARTUP directives consistently" >&5 +echo "configure:7359: checking whether libgloss uses STARTUP directives consistently" >&5 gcc_cv_mips_libgloss_startup=no gcc_cv_libgloss_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/libgloss if test "x$exec_prefix" = xNONE; then @@ -7561,7 +7557,7 @@ fi echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:7565: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:7561: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" diff --git a/gcc/configure.in b/gcc/configure.in index d2b8bbb..eecadd3 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -965,17 +965,13 @@ fi # Collect build-machine-specific information. . ${srcdir}/config.build +# Collect host-machine-specific information. +. ${srcdir}/config.host + target_gtfiles= -host_xm_file= -host_xm_defines= -host_xmake_file= -host_exeext= - -# Decode the host machine, then the target machine. -# For the host machine, we save the xm_file variable as host_xm_file; -# then we decode the target machine and forget everything else -# that came from the host machine. -for machine in $host $target; do + +# Collect target-machine-specific information. +for machine in $target ; do . ${srcdir}/config.gcc done