diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2010-08-22 16:23:38 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2010-08-22 16:23:38 +0000 |
commit | 8c157f90f945fbaa356d381f19a43dd712168673 (patch) | |
tree | c172392bd61f9817efc08bc65e8eeb051391b0ec /gcc/config.gcc | |
parent | 11aa2577399fcd9ed88834ceab7359c3872f7bb7 (diff) | |
download | gcc-8c157f90f945fbaa356d381f19a43dd712168673.zip gcc-8c157f90f945fbaa356d381f19a43dd712168673.tar.gz gcc-8c157f90f945fbaa356d381f19a43dd712168673.tar.bz2 |
re PR boehm-gc/34544 (pthread_default_stacksize_np failed.)
PR boehm-gc/34544
* gthr-posix.h (__gthread_active_init): Delete.
(__gthread_active_p): Do activity check here.
Don't include errno.h on hppa-hpux. Update comment.
* gthr-posix95.h (__gthread_active_init): Delete.
(__gthread_active_p): Do activity check here.
Don't include errno.h on hppa-hpux. Update comment.
* config.gcc (hppa[12]*-*-hpux11*): Define extra_parts.
* config/pa/pa64-hpux.h (LIB_SPEC): When -static is specified, only
add -lpthread when -mt or -pthread is specified.
* config/pa/pa-hpux11.h (LIB_SPEC): likewise.
(LINK_GCC_C_SEQUENCE_SPEC): Define.
* config/pa/t-pa-hpux11 (LIBGCCSTUB_OBJS): Define.
(stublib.c, pthread_default_stacksize_np-stub.o,
pthread_mutex_lock-stub.o, pthread_mutex_unlock-stub.o,
$(T)libgcc_stub.a): Add methods.
* config/pa/t-pa64 (LIBGCCSTUB_OBJS): Add pthread stubs.
(stublib.c, pthread_default_stacksize_np-stub.o,
pthread_mutex_lock-stub.o, pthread_mutex_unlock-stub.o): Add methods.
* config/pa/stublib.c (pthread_default_stacksize_np, pthread_mutex_lock,
pthread_mutex_unlock): New stubs.
From-SVN: r163461
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 62dd9f65..148c99b 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1106,6 +1106,7 @@ hppa[12]*-*-hpux11*) else tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver" fi + extra_parts="libgcc_stub.a" case x${enable_threads} in x | xyes | xposix ) thread_file=posix |