diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-09 05:45:37 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-09 05:45:37 +0000 |
| commit | 7eca0902fd7bbdb04ea83f967b0a198335c8d5db (patch) | |
| tree | d8e38b0b0b122031b546b94f9c208c98f77ad482 /libc/sysdeps/linux/common | |
| parent | 79d0de9210745aad1115832e74c39da14142d619 (diff) | |
| download | uClibc-alpine-7eca0902fd7bbdb04ea83f967b0a198335c8d5db.tar.bz2 uClibc-alpine-7eca0902fd7bbdb04ea83f967b0a198335c8d5db.tar.xz | |
Changes made to the dynamic loader for TLS/NPTL support. Additional changes made to libpthread and libc for remaining support.
Diffstat (limited to 'libc/sysdeps/linux/common')
| -rw-r--r-- | libc/sysdeps/linux/common/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 84b29ac53..0ef5922eb 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -21,6 +21,10 @@ include $(TOPDIR)Rules.mak SRCS = $(wildcard *.c) +ifeq ($(strip $(PTHREADS_NATIVE)),y) +SRCS := $(filter-out fork.c,$(SRCS)) +endif + ifeq ($(strip $(EXCLUDE_BRK)),y) SRCS := $(filter-out sbrk.c,$(SRCS)) endif |
