Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / Makefile.flags
blobe2ce6291e5c1ac4a947f64149f8f7a6782712c44
1 # ==========================================================================
2 # Build system
3 # ==========================================================================
5 BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
6 export BB_VER
7 SKIP_STRIP ?= n
9 # -std=gnu99 needed for [U]LLONG_MAX on some systems
10 CPPFLAGS += $(call cc-option,-std=gnu99,)
12 CPPFLAGS += \
13         -Iinclude -Ilibbb \
14         $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include -I$(srctree)/libbb) \
15         -include include/autoconf.h \
16         -D_GNU_SOURCE -DNDEBUG \
17         $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \
18         -D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP
20 CFLAGS += $(call cc-option,-Wall,)
21 CFLAGS += $(call cc-option,-Wshadow,)
22 CFLAGS += $(call cc-option,-Wwrite-strings,)
23 CFLAGS += $(call cc-option,-Wundef,)
24 CFLAGS += $(call cc-option,-Wstrict-prototypes,)
25 CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,)
26 CFLAGS += $(call cc-option,-Wunused-function -Wunused-value,)
27 CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,)
28 # warn about C99 declaration after statement
29 CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
30 # If you want to add more -Wsomething above, make sure that it is
31 # still possible to build bbox without warnings.
33 ifeq ($(CONFIG_WERROR),y)
34 CFLAGS += $(call cc-option,-Werror,)
35 ## TODO:
36 ## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA:
37 ## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM
38 ## and no easy way to convince it to shut the hell up.
39 ## We have a lot of such things all over the place.
40 ## Classic *(off_t*)(void*)ptr does not work,
41 ## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; })
42 ## stuff in macros. This would obfuscate the code too much.
43 ## Maybe try __attribute__((__may_alias__))?
44 #CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
45 endif
46 # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
47 CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
49 CFLAGS += $(call cc-option,-fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
50 # -fno-guess-branch-probability: prohibit pseudo-random guessing
51 # of branch probabilities (hopefully makes bloatcheck more stable):
52 CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
53 CFLAGS += $(call cc-option,-funsigned-char -shared-libgcc,)
54 CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
56 # FIXME: These warnings are at least partially to be concerned about and should
57 # be fixed..
58 #CFLAGS += $(call cc-option,-Wconversion,)
60 ifneq ($(CONFIG_DEBUG),y)
61 CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
62 else
63 CFLAGS += $(call cc-option,-g,)
64 #CFLAGS += "-D_FORTIFY_SOURCE=2"
65 ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
66 CFLAGS += $(call cc-option,-O0,)
67 else
68 CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
69 endif
70 endif
72 # If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
73 ARCH_FPIC ?= -fpic
74 ARCH_FPIE ?= -fpie
75 ARCH_PIE ?= -pie
77 ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
78 # on i386: 14% smaller libbusybox.so
79 # (code itself is 9% bigger, we save on relocs/PLT/GOT)
80 CFLAGS += $(ARCH_FPIC)
81 # and another 4% reduction of libbusybox.so:
82 # (external entry points must be marked EXTERNALLY_VISIBLE)
83 CFLAGS += $(call cc-option,-fvisibility=hidden)
84 endif
86 ifeq ($(CONFIG_STATIC),y)
87 CFLAGS_busybox += -static
88 endif
90 ifeq ($(CONFIG_PIE),y)
91 CFLAGS_busybox += $(ARCH_PIE)
92 CFLAGS += $(ARCH_FPIE)
93 endif
95 ifneq ($(CONFIG_EXTRA_CFLAGS),)
96 CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
97 #"))
98 endif
100 # Note: both "" (string consisting of two quote chars) and empty string
101 # are possible, and should be skipped below.
102 ifneq ($(subst "",,$(CONFIG_SYSROOT)),)
103 CFLAGS += --sysroot=$(CONFIG_SYSROOT)
104 export SYSROOT=$(CONFIG_SYSROOT)
105 endif
107 # Android has no separate crypt library
108 # gcc-4.2.1 fails if we try to feed C source on stdin:
109 #  echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc -
110 # fall back to using a temp file:
111 CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >crypttest.c; $(CC) $(CFLAGS) -lcrypt -o /dev/null crypttest.c >/dev/null 2>&1 && echo "y"; rm crypttest.c)
112 ifeq ($(CRYPT_AVAILABLE),y)
113 LDLIBS += m crypt
114 else
115 LDLIBS += m
116 endif
118 ifeq ($(CONFIG_PAM),y)
119 # libpam uses libpthread, so for static builds busybox must be linked to
120 # libpthread. On some platforms that requires an explicit -lpthread, so
121 # it should be in LDLIBS. For non-static builds, scripts/trylink will
122 # take care of removing -lpthread if possible. (Not bothering to check
123 # CONFIG_STATIC because even in a non-static build it could be that the
124 # only libpam available is libpam.a, so -lpthread could still be
125 # needed.)
126 LDLIBS += pam pam_misc pthread
127 endif
129 ifeq ($(CONFIG_SELINUX),y)
130 LDLIBS += selinux sepol
131 endif
133 ifeq ($(CONFIG_EFENCE),y)
134 LDLIBS += efence
135 endif
137 ifeq ($(CONFIG_DMALLOC),y)
138 LDLIBS += dmalloc
139 endif
141 # If a flat binary should be built, CFLAGS_busybox="-elf2flt"
142 # env var should be set for make invocation.
143 # Here we check whether CFLAGS_busybox indeed contains that flag.
144 # (For historical reasons, we also check LDFLAGS, which doesn't
145 # seem to be entirely correct variable to put "-elf2flt" into).
146 W_ELF2FLT = -elf2flt
147 ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
148 SKIP_STRIP = y
149 endif
151 ifneq ($(CONFIG_EXTRA_LDFLAGS),)
152 EXTRA_LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
153 #"))
154 endif
156 ifneq ($(CONFIG_EXTRA_LDLIBS),)
157 LDLIBS += $(strip $(subst ",,$(CONFIG_EXTRA_LDLIBS)))
158 #"))
159 endif
161 # Busybox is a stack-fatty so make sure we increase default size
162 # TODO: use "make stksizes" to find & fix big stack users
163 # (we stole scripts/checkstack.pl from the kernel... thanks guys!)
164 # Reduced from 20k to 16k in 1.9.0.
165 FLTFLAGS += -s 16000