summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-15 23:58:10 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-15 23:58:10 +0000
commit34d61933bb059372c68a4cfacc4ce801dc1f28db (patch)
tree09c0a2438db7dc2efda12f4b0e588aa31db217d9 /Rules.mak
parent1c8b3c30f9bb9690d48c5196c8481455e3634cd4 (diff)
A few build updates
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rules.mak b/Rules.mak
index ba14a2743..4d9c8660d 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -56,13 +56,13 @@ ifeq ($(strip $(DODEBUG)),true)
CFLAGS += -g
TARGET_CFLAGS += -g
LDFLAGS = -nostdlib -Wl,-warn-common
- TARGET_LDFLAGS = -Wl,-warn-common
+ TARGET_LDFLAGS = --uclibc-use-build-dir -Wl,-warn-common
STRIPTOOL = /bin/true -Since_we_are_debugging
else
CFLAGS += -DNDEBUG #-fomit-frame-pointer
TARGET_CFLAGS += -DNDEBUG #-fomit-frame-pointer
LDFLAGS = -s -nostdlib -Wl,-warn-common
- TARGET_LDFLAGS = -s -Wl,-warn-common
+ TARGET_LDFLAGS = --uclibc-use-build-dir -s -Wl,-warn-common
endif
ifndef $(PREFIX)