]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 19 Apr 2003 20:15:36 +0000 (20:15 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 19 Apr 2003 20:15:36 +0000 (20:15 +0000)
* configure.in: Add AC_PROG_CXX.
* config.make.in (CXX): Define.

ChangeLog
config.make.in
configure.in
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h

index 965d5a4fd47d5c1769a8178cca9bfee72405389c..bf6d207ed49fbfad57651bbb51086635325b2bbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-04-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * configure.in: Add AC_PROG_CXX.
+       * config.make.in (CXX): Define.
+
        * sysdeps/i386/i686/hp-timing.h (HP_TIMING_PRINT): Change type of
        __len to size_t to avoid warnings.
 
index c704cc701dbf76773844954bc66cd0ef29b4bc52..e9c234a7a6e303a935b947978add8dc77c39cfae 100644 (file)
@@ -84,6 +84,7 @@ force-install = @force_install@
 
 # Build tools.
 CC = @CC@
+CXX = @CXX@
 BUILD_CC = @BUILD_CC@
 CFLAGS = @CFLAGS@
 AR = @AR@
index 2ef312304e858c0e6b4f2b4613ad68d1a278cced..300bba65bcd0a84d275a049709504eee8cfac665 100644 (file)
@@ -676,6 +676,8 @@ if test $host != $build; then
 fi
 AC_SUBST(cross_compiling)
 AC_PROG_CPP
+# We need the C++ compiler only for testing.
+AC_PROG_CXX
 LIBC_PROG_BINUTILS
 AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in
 
index d7cd8faddb916d0e6e8e9c2dc7f87bc27e3b377a..e5302642b803f8fd0c5f10505bd1bc6091b1a9a2 100644 (file)
@@ -1,5 +1,8 @@
 2003-04-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/i386/dl-sysdep.h
+       (DL_SYSINFO_IMPLEMENTATION): Add .eh_frame information.
+
        * sysdeps/unix/sysv/linux/unregister-atfork.c
        (__unregister_atfork): Don't free memory not allocated dynamically.
 
index 4c29c150f758fdedd4cb8e0b5ac7c8dba149d0f9..5d6d7fb9ff9638ba854874a04a9eb60fab391102 100644 (file)
@@ -55,7 +55,36 @@ extern void _dl_sysinfo_int80 (void) attribute_hidden;
        "_dl_sysinfo_int80:\n\t"                                                      \
        "int $0x80;\n\t"                                                              \
        "ret;\n\t"                                                            \
+       ".LEND_dl_sysinfo_int80\n\t"                                          \
        ".size _dl_sysinfo_int80,.-_dl_sysinfo_int80\n\t"                     \
+       ".previous;\n\t"                                                              \
+       ".section .eh_frame,\"a\",@progbits\n"                                \
+       ".LSTARTFRAMEDLSI:\n\t"                                               \
+       ".long .LENDCIEDLSI-.LSTARTCIEDLSI\n"                                 \
+       ".LSTARTCIEDLSI:\n\t"                                                 \
+       ".long 0\n\t"           /* CIE ID */                                  \
+       ".byte 1\n\t"           /* Version number */                          \
+       ".string \"zR\"\n\t"    /* NUL-terminated augmentation string */      \
+       ".uleb128 1\n\t"                /* Code alignment factor */                   \
+       ".sleb128 -4\n\t"       /* Data alignment factor */                   \
+       ".byte 8\n\t"           /* Return address register column */          \
+       ".uleb128 1\n\t"                /* Augmentation value length */               \
+       ".byte 0x1b\n\t"                /* DW_EH_PE_pcrel|DW_EH_PE_sdata4. */         \
+       ".byte 0x0c\n\t"                /* DW_CFA_def_cfa */                          \
+       ".uleb128 4\n\t"                                                              \
+       ".uleb128 4\n\t"                                                              \
+       ".byte 0x88\n\t"                /* DW_CFA_offset, column 0x8 */               \
+       ".uleb128 1\n\t"                                                              \
+       ".align 4\n"                                                          \
+       ".LENDCIEDLSI:\n\t"                                                   \
+       ".long .LENDFDEDLSI-.LSTARTFDEDLSI\n"   /* Length FDE */              \
+       ".LSTARTFDEDLSI:\n\t"                                                 \
+       ".long .LSTARTFDEDLSI-.LSTARTFRAMEDLSI\n\t" /* CIE pointer */         \
+       ".long _dl_sysinfo_int80-.\n\t" /* PC-relative start address */       \
+       ".long .LEND_dl_sysinfo_int80-_dl_sysinfo_int80\n\t"                  \
+       ".uleb128 0\n\t"                                                              \
+       ".align 4\n"                                                          \
+       ".LENDFDEDLSI:\n\t"                                                   \
        ".previous");
 #endif
 
This page took 0.063887 seconds and 5 git commands to generate.