diff options
Diffstat (limited to 'ld/configure')
-rwxr-xr-x | ld/configure | 51 |
1 files changed, 47 insertions, 4 deletions
diff --git a/ld/configure b/ld/configure index 6f4b203..eb6c237 100755 --- a/ld/configure +++ b/ld/configure @@ -790,6 +790,7 @@ enable_got enable_compressed_debug_sections enable_new_dtags enable_relro +enable_default_hash_style enable_werror enable_build_warnings enable_nls @@ -1450,6 +1451,8 @@ Optional Features: compress debug sections by default] --enable-new-dtags set DT_RUNPATH instead of DT_RPATH by default] --enable-relro enable -z relro in ELF linker by default + --enable-default-hash-style={sysv,gnu,both} + use this default hash style --enable-werror treat compile warnings as errors --enable-build-warnings enable build-time compiler warnings --disable-nls do not use Native Language Support @@ -11722,7 +11725,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11725 "configure" +#line 11728 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11828,7 +11831,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11831 "configure" +#line 11834 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -15564,6 +15567,34 @@ if test "${enable_relro+set}" = set; then : esac fi +# Decide which "--hash-style" to use by default +# Provide a configure time option to override our default. +# Check whether --enable-default-hash-style was given. +if test "${enable_default_hash_style+set}" = set; then : + enableval=$enable_default_hash_style; case "${enable_default_hash_style}" in + sysv | gnu | both) ;; + *) as_fn_error "bad value ${enable_default_hash_style} for enable-default-hash-style option" "$LINENO" 5 ;; +esac +else + case "${target}" in + # Enable gnu hash only on GNU targets, but not mips + mips*-*-*) enable_default_hash_style=sysv ;; + *-*-gnu* | *-*-linux* | *-*-nacl*) enable_default_hash_style=both ;; + *) enable_default_hash_style=sysv ;; +esac +fi + + +case "${enable_default_hash_style}" in + sysv | both) ac_default_emit_sysv_hash=1 ;; + *) ac_default_emit_sysv_hash=0 ;; +esac + +case "${enable_default_hash_style}" in + gnu | both) ac_default_emit_gnu_hash=1 ;; + *) ac_default_emit_gnu_hash=0 ;; +esac + # Set the 'development' global. . $srcdir/../bfd/development.sh @@ -15766,7 +15797,7 @@ fi # host-specific stuff: -ALL_LINGUAS="fr sv tr es da vi zh_CN zh_TW ga fi id bg it uk sr" +ALL_LINGUAS="bg da de es fi fr ga id it ru sr sv tr uk vi zh_CN zh_TW pt_BR" # If we haven't got the data from the intl directory, # assume NLS is disabled. USE_NLS=no @@ -17228,6 +17259,18 @@ _ACEOF +cat >>confdefs.h <<_ACEOF +#define DEFAULT_EMIT_SYSV_HASH $ac_default_emit_sysv_hash +_ACEOF + + + +cat >>confdefs.h <<_ACEOF +#define DEFAULT_EMIT_GNU_HASH $ac_default_emit_gnu_hash +_ACEOF + + + @@ -17255,7 +17298,7 @@ EMULATION_LIBPATH=$all_libpath if test x${enable_static} = xno; then - TESTBFDLIB="--rpath ../bfd/.libs ../bfd/.libs/libbfd.so" + TESTBFDLIB="-Wl,--rpath,../bfd/.libs ../bfd/.libs/libbfd.so" else TESTBFDLIB="../bfd/.libs/libbfd.a" fi |