diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
commit | 862fef6971ef660a985c790e3643187e5ecb855d (patch) | |
tree | d70a00b981442842d4bd84bfd456a4f249fb2e5b /ldso/libdl | |
parent | 311b479b519b33774b6bb75d5c4961f2e2498fc2 (diff) |
Yet more ldso cleanups. Be more discriminating about when using inlines
and when using real functions. Make things be more portable by
providing a default C routine to locate the got.
-Erik
Diffstat (limited to 'ldso/libdl')
-rw-r--r-- | ldso/libdl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index 7d5f27d29..f52027250 100644 --- a/ldso/libdl/Makefile +++ b/ldso/libdl/Makefile @@ -22,7 +22,7 @@ TOPDIR=../../ -include $(TOPDIR)/ldso/Rules.mak +include $(TOPDIR)Rules.mak LIBDL=libdl.a LIBDL_SHARED=libdl.so @@ -32,7 +32,7 @@ TARGET_CC= $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc CSRC= dlib.c OBJS=$(patsubst %.c,%.o, $(CSRC)) -CFLAGS += -DUSE_CACHE #-fPIC -D__PIC__ #-funroll-loops +CFLAGS += --uclibc-use-build-dir -DUSE_CACHE #-fPIC -D__PIC__ #-funroll-loops all: $(OBJS) $(LIBDL) shared |