diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-20 09:18:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-20 09:18:50 +0000 |
commit | e356ea321c8098cf1a83a67e27d64c44de08a298 (patch) | |
tree | 8be9273fb8f0e6acab47a9e09552cfbea5400b31 /Rules.mak | |
parent | 07ebf927b17572d92e785533d6e8ac1668cc57c6 (diff) |
Merge in the pthread library. This is the linuxthreads library taken from
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen
(me). Stefan has hacked things up such that linuxthreads runs on MMU-less
systems (tested only on arm-nommu). Erik cleaned things up and made it work
properly as a shared library.
-Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -105,7 +105,7 @@ ifeq ($(strip $(HAVE_SHARED)),true) ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true) LDSO=$(TOPDIR)lib/$(UCLIBC_LDSO) DYNAMIC_LINKER=$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) -BUILD_DYNAMIC_LINKER=${shell cd $(TOPDIR)lib && pwd}/$(UCLIBC_LDSO) + BUILD_DYNAMIC_LINKER=${shell cd $(TOPDIR)lib && pwd}/$(UCLIBC_LDSO) else LDSO=$(SYSTEM_LDSO) BUILD_UCLIBC_LDSO=false @@ -116,6 +116,9 @@ endif ifeq ($(strip $(DOPIC)),true) CFLAGS += -fPIC endif +ifeq ($(strip $(INCLUDE_THREADS)),true) + CFLAGS += -D_LIBC_REENTRANT +endif # TARGET_PREFIX is the directory under which which the uClibc runtime # environment will be installed and used on the target system. The |