diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-06 22:58:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-06 22:58:39 +0000 |
commit | ced368f7dc4df79822d88988365a82b5dd3bec16 (patch) | |
tree | efdb37880d81b19b140091b960df9a534ec0b13c /configure | |
parent | cbbbb1887f2c4a4a620627d5d1b0619368d2d511 (diff) | |
download | glibc-ced368f7dc4df79822d88988365a82b5dd3bec16.tar.gz glibc-ced368f7dc4df79822d88988365a82b5dd3bec16.tar.xz glibc-ced368f7dc4df79822d88988365a82b5dd3bec16.zip |
* scripts/check-c++-types.sh: Add more pthread types.
* scripts/data//c++-types-i386-linux-gnu.data: Adjust. * scripts/data//c++-types-ia64-linux-gnu.data: Likewise. * scripts/data//c++-types-powerpc-linux-gnu.data: Likewise. * scripts/data//c++-types-powerpc64-linux-gnu.data: Likewise. * scripts/data//c++-types-s390-linux-gnu.data: Likewise. * scripts/data//c++-types-s390x-linux-gnu.data: Likewise. * scripts/data//c++-types-x86_64-linux-gnu.data: Likewise.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure b/configure index 224322a62b..448ef5b4f0 100755 --- a/configure +++ b/configure @@ -6135,13 +6135,17 @@ echo $ECHO_N "checking whether CFI directives are supported... $ECHO_C" >&6 if test "${libc_cv_asm_cfi_directives+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - cat > conftest.s <<EOF + case $machine in + sparc/sparc64*) cfi_offset=2047;; + *) cfi_offset=0;; +esac +cat > conftest.s <<EOF .text .type func,%function func: .cfi_startproc .cfi_remember_state - .cfi_rel_offset 1, 0 + .cfi_rel_offset 1, $cfi_offset .cfi_endproc EOF if { ac_try='${CC-cc} $ASFLAGS -c conftest.s 1>&5' |