commit | c1feac6e9ff0acfbafc0abc11c09b4c1449acce8 | [log] [tgz] |
---|---|---|
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Mon Jan 08 16:29:15 2007 +0000 |
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Mon Jan 08 16:29:15 2007 +0000 |
tree | 63522a4172ac4036e6742f1d4a9a276b4da15fd2 | |
parent | 681f183b9408c877e78b2fe538fd6264c0a7493d [diff] [blame] |
- set LD to ld - simplify the cmd_busybox__ a bit and pass the LDFLAGS via -Wl down to CC
diff --git a/Makefile.flags b/Makefile.flags index 0261d34..7dd9dc5 100644 --- a/Makefile.flags +++ b/Makefile.flags
@@ -23,6 +23,9 @@ ifeq ($(CONFIG_DEBUG),y) CFLAGS += -g -LDFLAGS += -g endif +ifeq ($(CONFIG_STATIC),y) +LDFLAGS += -static +endif +LDFLAGS += -nostdlib