diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-13 17:44:24 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-13 17:44:24 +0000 |
commit | 9729e65706f46bd04d6e5946e20bd3c7ff4d7cc3 (patch) | |
tree | 2bd5bec2983193a9a3d84b9b849231adaf39654c | |
parent | 5b6f776fe9f71b2266c3d3923a93ffb2d1009fdb (diff) |
- honor CONFIG_DEBUG
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | Makefile.flags | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -567,13 +567,13 @@ busybox-all := $(core-y) $(libs-y) # May be overridden by arch/$(ARCH)/Makefile quiet_cmd_busybox__ ?= LINK $@ ifdef CONFIG_STATIC - cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) \ + cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) $(LDFLAGS) \ -static \ -o $@ \ -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group else - cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) -o $@ \ + cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) -o $@ $(LDFLAGS) \ -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ -Wl,--start-group $(busybox-all) -Wl,--end-group endif diff --git a/Makefile.flags b/Makefile.flags index bb5cef0d9..0261d34df 100644 --- a/Makefile.flags +++ b/Makefile.flags @@ -20,3 +20,9 @@ CFLAGS += \ -funsigned-char -fno-builtin-strlen -finline-limit=0 -static-libgcc \ -Os -falign-functions=1 -falign-jumps=1 -falign-loops=1 \ -fomit-frame-pointer -ffunction-sections -fdata-sections + +ifeq ($(CONFIG_DEBUG),y) +CFLAGS += -g +LDFLAGS += -g +endif + |