aboutsummaryrefslogtreecommitdiff
path: root/Makefile.flags
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-08 16:29:15 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-08 16:29:15 +0000
commitb19a4db01e30b81241732248d9939c16253124b5 (patch)
tree63522a4172ac4036e6742f1d4a9a276b4da15fd2 /Makefile.flags
parent9d7a162ce220a42c85f155529320960fdb6d6b51 (diff)
downloadbusybox-w32-b19a4db01e30b81241732248d9939c16253124b5.tar.gz
busybox-w32-b19a4db01e30b81241732248d9939c16253124b5.tar.bz2
busybox-w32-b19a4db01e30b81241732248d9939c16253124b5.zip
- set LD to ld
- simplify the cmd_busybox__ a bit and pass the LDFLAGS via -Wl down to CC git-svn-id: svn://busybox.net/trunk/busybox@17200 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile.flags')
-rw-r--r--Makefile.flags5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.flags b/Makefile.flags
index 0261d34df..7dd9dc5dd 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -23,6 +23,9 @@ CFLAGS += \
23 23
24ifeq ($(CONFIG_DEBUG),y) 24ifeq ($(CONFIG_DEBUG),y)
25CFLAGS += -g 25CFLAGS += -g
26LDFLAGS += -g
27endif 26endif
28 27
28ifeq ($(CONFIG_STATIC),y)
29LDFLAGS += -static
30endif
31LDFLAGS += -nostdlib