diff options
author | Ulrich Drepper <drepper@redhat.com> | 1996-08-25 23:59:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1996-08-25 23:59:31 +0000 |
commit | 655a5796e79d734ba2eb76e1238667ea1c2ae64b (patch) | |
tree | 1d6ad65451c2b3ded4b8c00c6744896462e01ea7 | |
parent | 0f86f6c9a1979b1902f879071d21d0cbff3f7527 (diff) | |
download | glibc-655a5796e79d734ba2eb76e1238667ea1c2ae64b.tar.gz glibc-655a5796e79d734ba2eb76e1238667ea1c2ae64b.tar.xz glibc-655a5796e79d734ba2eb76e1238667ea1c2ae64b.zip |
Add definition of __eh_pc and __throw to --no-whole-archive test program.
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure index 1882a6c6ca..91817b328b 100755 --- a/configure +++ b/configure @@ -1560,10 +1560,12 @@ if eval "test \"`echo '$''{'libc_cv_ld_no_whole_archive'+set}'`\" = set"; then else cat > conftest.c <<\EOF _start () {} +int __eh_pc; +__throw () {} EOF if { ac_try='${CC-cc} $CFLAGS -nostdlib -nostartfiles -Wl,--no-whole-archive - -o conftest conftest.c'; { (eval echo configure:1567: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then + -o conftest conftest.c'; { (eval echo configure:1569: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then libc_cv_ld_no_whole_archive=yes else libc_cv_ld_no_whole_archive=no |