aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-06-28 20:11:28 +0000
committerEric Andersen <andersen@codepoet.org>2000-06-28 20:11:28 +0000
commita44790f53919f0d129c78b8a288e5f5cac331c66 (patch)
tree8baa3cf3a7a6f6f6f6323403b24d772d9fb96c3a /Makefile
parenta2db097d662e5d739b5a0748208dc76055260061 (diff)
downloadbusybox-w32-a44790f53919f0d129c78b8a288e5f5cac331c66.tar.gz
busybox-w32-a44790f53919f0d129c78b8a288e5f5cac331c66.tar.bz2
busybox-w32-a44790f53919f0d129c78b8a288e5f5cac331c66.zip
Better cross libc support.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f44790c80..16573ea89 100644
--- a/Makefile
+++ b/Makefile
@@ -52,11 +52,11 @@ endif
52 52
53# -D_GNU_SOURCE is needed because environ is used in init.c 53# -D_GNU_SOURCE is needed because environ is used in init.c
54ifeq ($(DODEBUG),true) 54ifeq ($(DODEBUG),true)
55 CFLAGS += -Wall -g -fno-builtin -D_GNU_SOURCE 55 CFLAGS += -Wall -g -D_GNU_SOURCE
56 LDFLAGS += 56 LDFLAGS +=
57 STRIP = 57 STRIP =
58else 58else
59 CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE 59 CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
60 LDFLAGS += -s 60 LDFLAGS += -s
61 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) 61 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
62 #Only staticly link when _not_ debugging 62 #Only staticly link when _not_ debugging