diff options
author | Ian Lance Taylor <ian@airs.com> | 2010-10-12 19:21:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2010-10-12 19:21:41 +0000 |
commit | eb3730490ec71b6e8a9d63a0348b40d484041db5 (patch) | |
tree | 35f77a081e9d01a073baecec2ae2e8677d9f0589 /gold/configure | |
parent | 3cef71791839860d05c8c4246c4e1ce2520b44ca (diff) | |
download | gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.zip gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.tar.gz gdb-eb3730490ec71b6e8a9d63a0348b40d484041db5.tar.bz2 |
* script-sections.h (class Script_sections): Make
Sections_elements typedef public.
* script-sections.cc (class Sort_output_sections): Add elements_
field. Add constructor which sets it; change all callers.
(Sort_output_sections::is_before): New function.
(Sort_output_sections::operator()): Call is_before.
* configure.ac (NATIVE_OR_CROSS_LINKER): New automake
conditional.
* testsuite/script_test_10.sh: New test. Test script section
order.
* testsuite/script_test_10.t: Likewise.
* testsuite/script_test_10.s: Likewise.
* testsuite/Makefile.am: Wrap the cross linker tests and the
common tests into NATIVE_OR_CROSS_LINKER.
(check_SCRIPTS): Add script_test_10.sh.
(check_DATA): Add script_test_10.stdout.
(script_test_10.o, script_test_10): New targets.
(script_test_10.stdout): New target.
* configure, testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/configure')
-rwxr-xr-x | gold/configure | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/gold/configure b/gold/configure index c6e12f6..ce08d65 100755 --- a/gold/configure +++ b/gold/configure @@ -621,6 +621,8 @@ MCMODEL_MEDIUM_FALSE MCMODEL_MEDIUM_TRUE FN_PTRS_IN_SO_WITHOUT_PIC_FALSE FN_PTRS_IN_SO_WITHOUT_PIC_TRUE +NATIVE_OR_CROSS_LINKER_FALSE +NATIVE_OR_CROSS_LINKER_TRUE GCC_FALSE GCC_TRUE NATIVE_LINKER_FALSE @@ -6085,6 +6087,15 @@ else fi + if test "x$target_alias" = "x" -o "x$host_alias" = "x$target_alias" -o "x$host_alias" = "x$build_alias"; then + NATIVE_OR_CROSS_LINKER_TRUE= + NATIVE_OR_CROSS_LINKER_FALSE='#' +else + NATIVE_OR_CROSS_LINKER_TRUE='#' + NATIVE_OR_CROSS_LINKER_FALSE= +fi + + if case $target_cpu in i?86) true;; @@ -7223,6 +7234,10 @@ if test -z "${GCC_TRUE}" && test -z "${GCC_FALSE}"; then as_fn_error "conditional \"GCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${NATIVE_OR_CROSS_LINKER_TRUE}" && test -z "${NATIVE_OR_CROSS_LINKER_FALSE}"; then + as_fn_error "conditional \"NATIVE_OR_CROSS_LINKER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${FN_PTRS_IN_SO_WITHOUT_PIC_TRUE}" && test -z "${FN_PTRS_IN_SO_WITHOUT_PIC_FALSE}"; then as_fn_error "conditional \"FN_PTRS_IN_SO_WITHOUT_PIC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 @@ -8562,7 +8577,7 @@ $as_echo X"$file" | case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` + ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. |