diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-09-01 17:30:41 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-09-01 17:30:41 +0000 |
commit | a89ea0df26fda07c90482b44532a92898f7f47c5 (patch) | |
tree | 0712f7e203543da35736b3249fc43a0457611226 /gcc/configure.in | |
parent | 31934da71aba3925e001c39c77e90763bc2d39eb (diff) | |
download | gcc-a89ea0df26fda07c90482b44532a92898f7f47c5.zip gcc-a89ea0df26fda07c90482b44532a92898f7f47c5.tar.gz gcc-a89ea0df26fda07c90482b44532a92898f7f47c5.tar.bz2 |
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
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 16 |
1 files changed, 6 insertions, 10 deletions
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 |