* Makeconfig (shared-thread-library): Reverse link order to work

around linker bug.
This commit is contained in:
Roland McGrath 2003-04-23 06:09:13 +00:00
parent 63af556fef
commit 950094f827
4 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2003-04-22 Roland McGrath <roland@redhat.com>
* Makeconfig (shared-thread-library): Reverse link order to work
around linker bug.
2003-04-20 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/useldt.h (DO_SET_THREAD_AREA): Make sure the

View File

@ -3,8 +3,8 @@
have-thread-library = yes
shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so \
$(common-objpfx)linuxthreads/libpthread_nonshared.a
shared-thread-library = $(common-objpfx)linuxthreads/libpthread_nonshared.a \
$(common-objpfx)linuxthreads/libpthread.so
static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
bounded-thread-library = $(common-objpfx)linuxthreads/libpthread_b.a

View File

@ -1,3 +1,8 @@
2003-04-22 Roland McGrath <roland@redhat.com>
* Makeconfig (shared-thread-library): Reverse link order to work
around linker bug.
2003-04-22 Ulrich Drepper <drepper@redhat.com>
* semaphore.h: Fix typo in comment.

View File

@ -22,8 +22,8 @@
have-thread-library = yes
shared-thread-library = $(common-objpfx)nptl/libpthread.so \
$(common-objpfx)nptl/libpthread_nonshared.a
shared-thread-library = $(common-objpfx)nptl/libpthread_nonshared.a \
$(common-objpfx)nptl/libpthread.so
static-thread-library = $(common-objpfx)nptl/libpthread.a
bounded-thread-library = $(common-objpfx)nptl/libpthread_b.a