[a186108] | 1 | Submitted By: Joe Ciccone <jciccone@linuxfromscratch.org>
|
---|
| 2 | Date: 2006-11-09
|
---|
| 3 | Initial Package Version: 2.5
|
---|
| 4 | Origin: Joe Ciccone
|
---|
| 5 | Upstream Status: Unknown
|
---|
| 6 | Description: Checks to see if libgcc_eh has been provided by gcc. If it has
|
---|
| 7 | the glibc will attempt to link to it.
|
---|
| 8 |
|
---|
| 9 | diff -Naur glibc-2.5.orig/Makeconfig glibc-2.5/Makeconfig
|
---|
| 10 | --- glibc-2.5.orig/Makeconfig 2006-11-09 11:40:14.000000000 -0500
|
---|
| 11 | +++ glibc-2.5/Makeconfig 2006-11-09 11:40:31.000000000 -0500
|
---|
| 12 | @@ -526,12 +526,20 @@
|
---|
| 13 | libunwind = -lunwind
|
---|
| 14 | endif
|
---|
| 15 | ifneq ($(have-as-needed),yes)
|
---|
| 16 | +ifneq ($(have-cc-with-libgcc_eh),yes)
|
---|
| 17 | + libgcc_eh := $(libunwind)
|
---|
| 18 | +else
|
---|
| 19 | libgcc_eh := -lgcc_eh $(libunwind)
|
---|
| 20 | +endif
|
---|
| 21 | else
|
---|
| 22 | libgcc_eh := -Wl,--as-needed -lgcc_s$(libgcc_s_suffix) $(libunwind) -Wl,--no-as-needed
|
---|
| 23 | endif
|
---|
| 24 | gnulib := -lgcc $(libgcc_eh)
|
---|
| 25 | -static-gnulib := -lgcc -lgcc_eh $(libunwind)
|
---|
| 26 | +ifneq ($(have-cc-with-libgcc_eh),yes)
|
---|
| 27 | + static-gnulib := -lgcc $(libunwind)
|
---|
| 28 | +else
|
---|
| 29 | + static-gnulib := -lgcc -lgcc_eh $(libunwind)
|
---|
| 30 | +endif
|
---|
| 31 | libc.so-gnulib := -lgcc
|
---|
| 32 | endif
|
---|
| 33 | ifeq ($(elf),yes)
|
---|
| 34 | diff -Naur glibc-2.5.orig/config.make.in glibc-2.5/config.make.in
|
---|
| 35 | --- glibc-2.5.orig/config.make.in 2006-11-09 11:40:14.000000000 -0500
|
---|
| 36 | +++ glibc-2.5/config.make.in 2006-11-09 11:40:31.000000000 -0500
|
---|
| 37 | @@ -63,6 +63,7 @@
|
---|
| 38 | have-libaudit = @have_libaudit@
|
---|
| 39 | have-libcap = @have_libcap@
|
---|
| 40 | have-cc-with-libunwind = @libc_cv_cc_with_libunwind@
|
---|
| 41 | +have-cc-with-libgcc_eh = @libc_cv_cc_with_libgcc_eh@
|
---|
| 42 | fno-unit-at-a-time = @fno_unit_at_a_time@
|
---|
| 43 | bind-now = @bindnow@
|
---|
| 44 | have-hash-style = @libc_cv_hashstyle@
|
---|
| 45 | diff -Naur glibc-2.5.orig/configure glibc-2.5/configure
|
---|
| 46 | --- glibc-2.5.orig/configure 2006-11-09 11:40:14.000000000 -0500
|
---|
| 47 | +++ glibc-2.5/configure 2006-11-09 11:41:03.000000000 -0500
|
---|
| 48 | @@ -313,7 +313,7 @@
|
---|
| 49 | # include <unistd.h>
|
---|
| 50 | #endif"
|
---|
| 51 |
|
---|
| 52 | -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS with_fp with_cvs enable_check_abi oldest_abi bindnow force_install all_warnings build build_cpu build_vendor build_os host host_cpu host_vendor host_os subdirs add_ons add_on_subdirs base_machine submachine sysnames sysdeps_add_ons INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC OBJEXT BUILD_CC cross_compiling CPP CXX CXXFLAGS ac_ct_CXX AR OBJDUMP RANLIB ac_ct_RANLIB MIG AS LD PWD_P MAKE MSGFMT MAKEINFO SED AUTOCONF SYSINCLUDES CXX_SYSINCLUDES libc_cv_gcc_static_libgcc BASH libc_cv_have_bash2 KSH libc_cv_have_ksh AWK PERL INSTALL_INFO BISON VERSIONING libc_cv_asm_protected_directive libc_cv_cc_with_libunwind libc_cv_z_nodelete libc_cv_z_nodlopen libc_cv_z_initfirst libc_cv_z_relro libc_cv_Bgroup libc_cv_libgcc_s_suffix libc_cv_as_needed ASFLAGS_config libc_cv_z_combreloc libc_cv_z_execstack libc_cv_fpie libc_cv_hashstyle fno_unit_at_a_time libc_cv_ssp libc_cv_have_initfini no_whole_archive exceptions LIBGD have_libaudit have_libcap have_selinux EGREP sizeof_long_double libc_cv_gcc_unwind_find_fde uname_sysname uname_release uname_version old_glibc_headers libc_cv_slibdir libc_cv_localedir libc_cv_sysconfdir libc_cv_rootsbindir libc_cv_forced_unwind use_ldconfig ldd_rewrite_script elf xcoff static shared pic_default profile omitfp bounded static_nss nopic_initfini DEFINES mach_interface_list VERSION RELEASE LIBOBJS LTLIBOBJS'
|
---|
| 53 | +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS with_fp with_cvs enable_check_abi oldest_abi bindnow force_install all_warnings build build_cpu build_vendor build_os host host_cpu host_vendor host_os subdirs add_ons add_on_subdirs base_machine submachine sysnames sysdeps_add_ons INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN_S CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC OBJEXT BUILD_CC cross_compiling CPP CXX CXXFLAGS ac_ct_CXX AR OBJDUMP RANLIB ac_ct_RANLIB MIG AS LD PWD_P MAKE MSGFMT MAKEINFO SED AUTOCONF SYSINCLUDES CXX_SYSINCLUDES libc_cv_gcc_static_libgcc BASH libc_cv_have_bash2 KSH libc_cv_have_ksh AWK PERL INSTALL_INFO BISON VERSIONING libc_cv_asm_protected_directive libc_cv_cc_with_libunwind libc_cv_cc_with_libgcc_eh libc_cv_z_nodelete libc_cv_z_nodlopen libc_cv_z_initfirst libc_cv_z_relro libc_cv_Bgroup libc_cv_libgcc_s_suffix libc_cv_as_needed ASFLAGS_config libc_cv_z_combreloc libc_cv_z_execstack libc_cv_fpie libc_cv_hashstyle fno_unit_at_a_time libc_cv_ssp libc_cv_have_initfini no_whole_archive exceptions LIBGD have_libaudit have_libcap have_selinux EGREP sizeof_long_double libc_cv_gcc_unwind_find_fde uname_sysname uname_release uname_version old_glibc_headers libc_cv_slibdir libc_cv_localedir libc_cv_sysconfdir libc_cv_rootsbindir libc_cv_forced_unwind use_ldconfig ldd_rewrite_script elf xcoff static shared pic_default profile omitfp bounded static_nss nopic_initfini DEFINES mach_interface_list VERSION RELEASE LIBOBJS LTLIBOBJS'
|
---|
| 54 | ac_subst_files=''
|
---|
| 55 |
|
---|
| 56 | # Initialize some variables set by options.
|
---|
| 57 | @@ -5552,6 +5552,33 @@
|
---|
| 58 |
|
---|
| 59 | fi
|
---|
| 60 |
|
---|
| 61 | + { echo "$as_me:$LINENO: checking whether to link against libgcc_eh" >&5
|
---|
| 62 | +echo $ECHO_N "checking whether to link against libgcc_eh... $ECHO_C" >&6; }
|
---|
| 63 | +if test "${libc_cv_cc_with_libgcc_eh+set}" = set; then
|
---|
| 64 | + echo $ECHO_N "(cached) $ECHO_C" >&6
|
---|
| 65 | +else
|
---|
| 66 | +
|
---|
| 67 | + cat > conftest.c <<EOF
|
---|
| 68 | +int main (void) { return 0; }
|
---|
| 69 | +EOF
|
---|
| 70 | + if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -static -o conftest \
|
---|
| 71 | + conftest.c -v 2>&1 >/dev/null | grep -q " -lgcc_eh "; then
|
---|
| 72 | + libc_cv_cc_with_libgcc_eh=yes
|
---|
| 73 | + else
|
---|
| 74 | + libc_cv_cc_with_libgcc_eh=no
|
---|
| 75 | + fi
|
---|
| 76 | + rm -f conftest*
|
---|
| 77 | +fi
|
---|
| 78 | +{ echo "$as_me:$LINENO: result: $libc_cv_cc_with_libgcc_eh" >&5
|
---|
| 79 | +echo "${ECHO_T}$libc_cv_cc_with_libgcc_eh" >&6; }
|
---|
| 80 | +
|
---|
| 81 | + if test $libc_cv_cc_with_libgcc_eh = yes; then
|
---|
| 82 | + cat >>confdefs.h <<\_ACEOF
|
---|
| 83 | +#define HAVE_CC_WITH_LIBGCC_EH 1
|
---|
| 84 | +_ACEOF
|
---|
| 85 | +
|
---|
| 86 | + fi
|
---|
| 87 | +
|
---|
| 88 | echo "$as_me:$LINENO: checking for -z nodelete option" >&5
|
---|
| 89 | echo $ECHO_N "checking for -z nodelete option... $ECHO_C" >&6
|
---|
| 90 | if test "${libc_cv_z_nodelete+set}" = set; then
|
---|
| 91 | @@ -8512,6 +8539,7 @@
|
---|
| 92 | s,@VERSIONING@,$VERSIONING,;t t
|
---|
| 93 | s,@libc_cv_asm_protected_directive@,$libc_cv_asm_protected_directive,;t t
|
---|
| 94 | s,@libc_cv_cc_with_libunwind@,$libc_cv_cc_with_libunwind,;t t
|
---|
| 95 | +s,@libc_cv_cc_with_libgcc_eh@,$libc_cv_cc_with_libgcc_eh,;t t
|
---|
| 96 | s,@libc_cv_z_nodelete@,$libc_cv_z_nodelete,;t t
|
---|
| 97 | s,@libc_cv_z_nodlopen@,$libc_cv_z_nodlopen,;t t
|
---|
| 98 | s,@libc_cv_z_initfirst@,$libc_cv_z_initfirst,;t t
|
---|
| 99 | diff -Naur glibc-2.5.orig/configure.in glibc-2.5/configure.in
|
---|
| 100 | --- glibc-2.5.orig/configure.in 2006-11-09 11:40:15.000000000 -0500
|
---|
| 101 | +++ glibc-2.5/configure.in 2006-11-09 11:40:31.000000000 -0500
|
---|
| 102 | @@ -1391,6 +1391,23 @@
|
---|
| 103 | AC_DEFINE(HAVE_CC_WITH_LIBUNWIND)
|
---|
| 104 | fi
|
---|
| 105 |
|
---|
| 106 | + AC_CACHE_CHECK(whether to link against libgcc_eh,
|
---|
| 107 | + libc_cv_cc_with_libgcc_eh, [
|
---|
| 108 | + cat > conftest.c <<EOF
|
---|
| 109 | +int main (void) { return 0; }
|
---|
| 110 | +EOF
|
---|
| 111 | + if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -static -o conftest \
|
---|
| 112 | + conftest.c -v 2>&1 >/dev/null | grep -q " -lgcc_eh "; then
|
---|
| 113 | + libc_cv_cc_with_libgcc_eh=yes
|
---|
| 114 | + else
|
---|
| 115 | + libc_cv_cc_with_libgcc_eh=no
|
---|
| 116 | + fi
|
---|
| 117 | + rm -f conftest*])
|
---|
| 118 | + AC_SUBST(libc_cv_cc_with_libgcc_eh)
|
---|
| 119 | + if test $libc_cv_cc_with_libgcc_eh = yes; then
|
---|
| 120 | + AC_DEFINE(HAVE_CC_WITH_LIBGCC_EH)
|
---|
| 121 | + fi
|
---|
| 122 | +
|
---|
| 123 | AC_CACHE_CHECK(for -z nodelete option,
|
---|
| 124 | libc_cv_z_nodelete, [dnl
|
---|
| 125 | cat > conftest.c <<EOF
|
---|