diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-28 20:11:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-28 20:11:28 +0000 |
commit | a44790f53919f0d129c78b8a288e5f5cac331c66 (patch) | |
tree | 8baa3cf3a7a6f6f6f6323403b24d772d9fb96c3a /Makefile | |
parent | a2db097d662e5d739b5a0748208dc76055260061 (diff) | |
download | busybox-a44790f53919f0d129c78b8a288e5f5cac331c66.tar.gz |
Better cross libc support.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -52,11 +52,11 @@ endif # -D_GNU_SOURCE is needed because environ is used in init.c ifeq ($(DODEBUG),true) - CFLAGS += -Wall -g -fno-builtin -D_GNU_SOURCE + CFLAGS += -Wall -g -D_GNU_SOURCE LDFLAGS += STRIP = else - CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE + CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE LDFLAGS += -s STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) #Only staticly link when _not_ debugging |