diff options
author | Nathan Froyd <froydnj@gcc.gnu.org> | 2007-05-08 00:37:39 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2007-05-08 00:37:39 +0000 |
commit | 2091ff6689ae73c4b95338a435d1c6e7b743599e (patch) | |
tree | 3aff327d968d66aedb2dcdc719740c083d117e18 /gcc/configure | |
parent | decc7c8a1cd784b2edeff50ee0f30572237b71f6 (diff) | |
download | gcc-2091ff6689ae73c4b95338a435d1c6e7b743599e.zip gcc-2091ff6689ae73c4b95338a435d1c6e7b743599e.tar.gz gcc-2091ff6689ae73c4b95338a435d1c6e7b743599e.tar.bz2 |
libiberty.h (writeargv): Declare.
include/
2007-05-07 Nathan Froyd <froydnj@codesourcery.com>
* libiberty.h (writeargv): Declare.
libiberty/
2007-05-07 Nathan Froyd <froydnj@codesourcery.com>
* argv.c (writeargv): New function.
gcc/
2007-05-07 Nathan Froyd <froydnj@codesourcery.com>
* gcc.c (at_file_supplied): New variable.
(main): Set it if we expanded argv.
(do_spec_1): Pass an @-file to the linker if we were called with
an @-file argument and HAVE_GNU_LD.
* collect2.c (at_file_supplied): New variable.
(response_file): New variable.
(collect_exit): Unlink response_file if necessary.
(handler): Likewise.
(do_wait): Likewise.
(main): Set at_file_supplied if we expanded argv.
(collect_execute): Pass an @-file to subprocesses if we were called
with an @-file argument.
* configure.ac: Add define for HAVE_GNU_LD.
* configure: Regenerate.
* config.in: Regenerate.
From-SVN: r124532
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/configure b/gcc/configure index 17e4fdc..b3aa2b0 100755 --- a/gcc/configure +++ b/gcc/configure @@ -1767,6 +1767,13 @@ _ACEOF fi +gnu_ld=`if test x"$gnu_ld_flag" = x"yes"; then echo 1; else echo 0; fi` + +cat >>confdefs.h <<_ACEOF +#define HAVE_GNU_LD $gnu_ld +_ACEOF + + echo "$as_me:$LINENO: checking whether a default linker was specified" >&5 echo $ECHO_N "checking whether a default linker was specified... $ECHO_C" >&6 if test x"${DEFAULT_LINKER+set}" = x"set"; then @@ -7665,7 +7672,7 @@ if test "${gcc_cv_prog_makeinfo_modern+set}" = set; then else ac_prog_version=`$MAKEINFO --version 2>&1 | sed -n 's/^.*GNU texinfo.* \([0-9][0-9.]*\).*$/\1/p'` - echo "configure:7668: version of makeinfo is $ac_prog_version" >&5 + echo "configure:7675: version of makeinfo is $ac_prog_version" >&5 case $ac_prog_version in '') gcc_cv_prog_makeinfo_modern=no;; 4.[4-9]*) |