Commit df6faf79 by Jim Wilson Committed by Jim Wilson

Fix host/build confusion with gas and gnu_ld flags.

	* configure.in (gnu_ld): Rename to gnu_ld_flag before main loop.
	Set gnu_ld to gnu_ld_flag inside main loop.
	(gas): Likewise.

From-SVN: r19230
parent 71b5e532
Wed Apr 15 12:38:03 1998 Jim Wilson <wilson@cygnus.com>
* configure.in (gnu_ld): Rename to gnu_ld_flag before main loop.
Set gnu_ld to gnu_ld_flag inside main loop.
(gas): Likewise.
Wed Apr 15 14:50:05 1998 Dave Brolley <brolley@cygnus.com> Wed Apr 15 14:50:05 1998 Dave Brolley <brolley@cygnus.com>
* toplev.c (compile_file): Call init_parse using new interface. * toplev.c (compile_file): Call init_parse using new interface.
......
...@@ -556,9 +556,9 @@ copy=cp ...@@ -556,9 +556,9 @@ copy=cp
# Check whether --with-gnu-ld or --without-gnu-ld was given. # Check whether --with-gnu-ld or --without-gnu-ld was given.
if test "${with_gnu_ld+set}" = set; then if test "${with_gnu_ld+set}" = set; then
withval="$with_gnu_ld" withval="$with_gnu_ld"
gnu_ld="$with_gnu_ld" gnu_ld_flag="$with_gnu_ld"
else else
gnu_ld=no gnu_ld_flag=no
fi fi
...@@ -566,9 +566,9 @@ fi ...@@ -566,9 +566,9 @@ fi
# Check whether --with-gnu-as or --without-gnu-as was given. # Check whether --with-gnu-as or --without-gnu-as was given.
if test "${with_gnu_as+set}" = set; then if test "${with_gnu_as+set}" = set; then
withval="$with_gnu_as" withval="$with_gnu_as"
gas="$with_gnu_as" gas_flag="$with_gnu_as"
else else
gas=no gas_flag=no
fi fi
...@@ -1935,6 +1935,10 @@ for machine in $build $host $target; do ...@@ -1935,6 +1935,10 @@ for machine in $build $host $target; do
exeext= exeext=
# Set this to control which thread package will be used. # Set this to control which thread package will be used.
thread_file= thread_file=
# Reinitialize these from the flag values every loop pass, since some
# configure entries modify them.
gas="$gas_flag"
gnu_ld="$gnu_ld_flag"
# Set default cpu_type, tm_file and xm_file so it can be updated in # Set default cpu_type, tm_file and xm_file so it can be updated in
# each machine entry. # each machine entry.
......
...@@ -34,14 +34,14 @@ copy=cp ...@@ -34,14 +34,14 @@ copy=cp
# With GNU ld # With GNU ld
AC_ARG_WITH(gnu-ld, AC_ARG_WITH(gnu-ld,
[ --with-gnu-ld arrange to work with GNU ld.], [ --with-gnu-ld arrange to work with GNU ld.],
gnu_ld="$with_gnu_ld", gnu_ld_flag="$with_gnu_ld",
gnu_ld=no) gnu_ld_flag=no)
# With GNU as # With GNU as
AC_ARG_WITH(gnu-as, AC_ARG_WITH(gnu-as,
[ --with-gnu-as arrange to work with GNU as.], [ --with-gnu-as arrange to work with GNU as.],
gas="$with_gnu_as", gas_flag="$with_gnu_as",
gas=no) gas_flag=no)
# With stabs # With stabs
AC_ARG_WITH(stabs, AC_ARG_WITH(stabs,
...@@ -246,6 +246,10 @@ for machine in $build $host $target; do ...@@ -246,6 +246,10 @@ for machine in $build $host $target; do
exeext= exeext=
# Set this to control which thread package will be used. # Set this to control which thread package will be used.
thread_file= thread_file=
# Reinitialize these from the flag values every loop pass, since some
# configure entries modify them.
gas="$gas_flag"
gnu_ld="$gnu_ld_flag"
# Set default cpu_type, tm_file and xm_file so it can be updated in # Set default cpu_type, tm_file and xm_file so it can be updated in
# each machine entry. # each machine entry.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment