diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2010-11-23 18:09:34 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2010-11-23 10:09:34 -0800 |
commit | 9580395facfc727ebe8553e586db0489ef58b392 (patch) | |
tree | d6a61f294ceeb925ea9343724356a7400dfc3273 | |
parent | 1dbadbbecdb6ffeaf6497776e36fd58f157334f3 (diff) | |
download | gcc-9580395facfc727ebe8553e586db0489ef58b392.zip gcc-9580395facfc727ebe8553e586db0489ef58b392.tar.gz gcc-9580395facfc727ebe8553e586db0489ef58b392.tar.bz2 |
Properly check default linker.
2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/12258
* configure.ac: Correct comments for --enable-gold/--enable-ld.
Properly check default linker.
* configure: Regnerated.
From-SVN: r167090
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | configure.ac | 10 |
3 files changed, 21 insertions, 6 deletions
@@ -1,3 +1,10 @@ +2010-11-23 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/12258 + * configure.ac: Correct comments for --enable-gold/--enable-ld. + Properly check default linker. + * configure: Regnerated. + 2010-11-23 Matthias Klose <doko@ubuntu.com> * configure.ac: For --enable-gold, handle value `default' instead of @@ -2854,13 +2854,17 @@ esac # Handle --enable-gold, --enable-ld. # --disable-gold [--enable-ld] # Build only ld. Default option. -# --enable-gold[=default] [--enable-ld] +# --enable-gold [--enable-ld] +# Build both gold and ld. Install gold as "ld.gold", install ld +# as "ld.bfd" and "ld". +# --enable-gold=default [--enable-ld] # Build both gold and ld. Install gold as "ld.gold" and "ld", # install ld as "ld.bfd". # --enable-gold[=default] --disable-ld # Build only gold, which is then installed as both "ld.gold" and "ld". # --enable-gold --enable-ld=default -# Build both gold (installed as "gold") and ld (installed as "ld"). +# Build both gold (installed as "ld.gold") and ld (installed as "ld" +# and ld.bfd). # In other words, ld is default # --enable-gold=default --enable-ld=default # Error. @@ -2920,7 +2924,7 @@ fi case "${ENABLE_LD}" in default) - if test x${default_ld} != xgold; then + if test x${default_ld} != x; then as_fn_error "either gold or ld can be the default ld" "$LINENO" 5 fi ;; diff --git a/configure.ac b/configure.ac index 626bb4e..294f241 100644 --- a/configure.ac +++ b/configure.ac @@ -327,13 +327,17 @@ esac # Handle --enable-gold, --enable-ld. # --disable-gold [--enable-ld] # Build only ld. Default option. -# --enable-gold[=default] [--enable-ld] +# --enable-gold [--enable-ld] +# Build both gold and ld. Install gold as "ld.gold", install ld +# as "ld.bfd" and "ld". +# --enable-gold=default [--enable-ld] # Build both gold and ld. Install gold as "ld.gold" and "ld", # install ld as "ld.bfd". # --enable-gold[=default] --disable-ld # Build only gold, which is then installed as both "ld.gold" and "ld". # --enable-gold --enable-ld=default -# Build both gold (installed as "gold") and ld (installed as "ld"). +# Build both gold (installed as "ld.gold") and ld (installed as "ld" +# and ld.bfd). # In other words, ld is default # --enable-gold=default --enable-ld=default # Error. @@ -387,7 +391,7 @@ ENABLE_LD=yes) case "${ENABLE_LD}" in default) - if test x${default_ld} != xgold; then + if test x${default_ld} != x; then AC_MSG_ERROR([either gold or ld can be the default ld]) fi ;; |