ash: "you have mail" should ignore first change in mtime
[oweals/busybox.git] / Makefile.flags
1 # ==========================================================================
2 # Build system
3 # ==========================================================================
4
5 BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
6 export BB_VER
7 SKIP_STRIP ?= n
8
9 # -std=gnu99 needed for [U]LLONG_MAX on some systems
10 CPPFLAGS += $(call cc-option,-std=gnu99,)
11
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
19
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 CFLAGS += $(call cc-option,-Wno-format-security,)
29 # warn about C99 declaration after statement
30 CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
31 # If you want to add more -Wsomething above, make sure that it is
32 # still possible to build bbox without warnings.
33
34 ifeq ($(CONFIG_WERROR),y)
35 CFLAGS += $(call cc-option,-Werror,)
36 ## TODO:
37 ## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA:
38 ## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM
39 ## and no easy way to convince it to shut the hell up.
40 ## We have a lot of such things all over the place.
41 ## Classic *(off_t*)(void*)ptr does not work,
42 ## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; })
43 ## stuff in macros. This would obfuscate the code too much.
44 ## Maybe try __attribute__((__may_alias__))?
45 #CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
46 endif
47 # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
48 CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
49
50 CFLAGS += $(call cc-option,-fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
51 # -fno-guess-branch-probability: prohibit pseudo-random guessing
52 # of branch probabilities (hopefully makes bloatcheck more stable):
53 CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
54 CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
55 CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
56 # Defeat .eh_frame bloat (gcc 4.6.3 x86-32 defconfig: 20% smaller busybox binary):
57 CFLAGS += $(call cc-option,-fno-unwind-tables,)
58 CFLAGS += $(call cc-option,-fno-asynchronous-unwind-tables,)
59 # No automatic printf->puts,putchar conversions
60 # (try disabling this and comparing assembly, it's instructive)
61 CFLAGS += $(call cc-option,-fno-builtin-printf,)
62
63 # FIXME: These warnings are at least partially to be concerned about and should
64 # be fixed..
65 #CFLAGS += $(call cc-option,-Wconversion,)
66
67 ifneq ($(CONFIG_DEBUG),y)
68 CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
69 else
70 CFLAGS += $(call cc-option,-g,)
71 #CFLAGS += "-D_FORTIFY_SOURCE=2"
72 ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
73 CFLAGS += $(call cc-option,-O0,)
74 else
75 CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
76 endif
77 endif
78
79 # If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
80 ARCH_FPIC ?= -fpic
81 ARCH_FPIE ?= -fpie
82 ARCH_PIE ?= -pie
83
84 # Usage: $(eval $(call pkg_check_modules,VARIABLE-PREFIX,MODULES))
85 define pkg_check_modules
86 $(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2))
87 $(1)_LIBS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --libs $(2))
88 endef
89
90 ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
91 # on i386: 14% smaller libbusybox.so
92 # (code itself is 9% bigger, we save on relocs/PLT/GOT)
93 CFLAGS += $(ARCH_FPIC)
94 # and another 4% reduction of libbusybox.so:
95 # (external entry points must be marked EXTERNALLY_VISIBLE)
96 CFLAGS += $(call cc-option,-fvisibility=hidden)
97 endif
98
99 ifeq ($(CONFIG_STATIC),y)
100 CFLAGS_busybox += -static
101 PKG_CONFIG_FLAGS += --static
102 endif
103
104 ifeq ($(CONFIG_PIE),y)
105 CFLAGS_busybox += $(ARCH_PIE)
106 CFLAGS += $(ARCH_FPIE)
107 endif
108
109 ifneq ($(CONFIG_EXTRA_CFLAGS),)
110 CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
111 #"))
112 endif
113
114 # Note: both "" (string consisting of two quote chars) and empty string
115 # are possible, and should be skipped below.
116 ifneq ($(subst "",,$(CONFIG_SYSROOT)),)
117 CFLAGS += --sysroot=$(CONFIG_SYSROOT)
118 export SYSROOT=$(CONFIG_SYSROOT)
119 endif
120
121 # Android has no separate crypt library
122 # gcc-4.2.1 fails if we try to feed C source on stdin:
123 #  echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc -
124 # fall back to using a temp file:
125 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)
126 ifeq ($(CRYPT_AVAILABLE),y)
127 LDLIBS += m crypt
128 else
129 LDLIBS += m
130 endif
131
132 ifeq ($(CONFIG_LINK_WITH_PTHREAD),y)
133 PTHREAD_AVAILABLE := $(shell echo 'int main(void){return 0;}' >pthreadtest.c; $(CC) $(CFLAGS) -lpthread -o /dev/null pthreadtest.c >/dev/null 2>&1 && echo "y"; rm pthreadtest.c)
134 ifeq ($(PTHREAD_AVAILABLE),y)
135 LDLIBS += pthread
136 endif
137 endif
138
139 ifeq ($(CONFIG_PAM),y)
140 # libpam uses libpthread, libdl and libaudit, so for static builds busybox
141 # must be linked to libpthread, libdl and libaudit. On some platforms that
142 # requires an explicit -lpthread, -ldl and -laudit, so it should be in
143 # LDLIBS. For non-static builds, scripts/trylink will take care of removing
144 # these flags if possible. (Not bothering to check CONFIG_STATIC because
145 # even in a non-static build it could be that the only libpam available is
146 # libpam.a, so -lpthread & Co. could still be needed.)
147 LDLIBS += pam pam_misc pthread dl audit
148 endif
149
150 ifeq ($(CONFIG_SELINUX),y)
151 SELINUX_PC_MODULES = libselinux libsepol
152 $(eval $(call pkg_check_modules,SELINUX,$(SELINUX_PC_MODULES)))
153 CPPFLAGS += $(SELINUX_CFLAGS)
154 LDLIBS += $(if $(SELINUX_LIBS),$(SELINUX_LIBS:-l%=%),$(SELINUX_PC_MODULES:lib%=%))
155 endif
156
157 ifeq ($(CONFIG_EFENCE),y)
158 LDLIBS += efence
159 endif
160
161 ifeq ($(CONFIG_DMALLOC),y)
162 LDLIBS += dmalloc
163 endif
164
165 # If a flat binary should be built, CFLAGS_busybox="-elf2flt"
166 # env var should be set for make invocation.
167 # Here we check whether CFLAGS_busybox indeed contains that flag.
168 # (For historical reasons, we also check LDFLAGS, which doesn't
169 # seem to be entirely correct variable to put "-elf2flt" into).
170 W_ELF2FLT = -elf2flt
171 ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
172 SKIP_STRIP = y
173 endif
174
175 ifneq ($(CONFIG_EXTRA_LDFLAGS),)
176 LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
177 #"))
178 endif
179
180 ifneq ($(CONFIG_EXTRA_LDLIBS),)
181 LDLIBS += $(strip $(subst ",,$(CONFIG_EXTRA_LDLIBS)))
182 #"))
183 endif
184
185 # Busybox is a stack-fatty so make sure we increase default size
186 # TODO: use "make stksizes" to find & fix big stack users
187 # (we stole scripts/checkstack.pl from the kernel... thanks guys!)
188 # Reduced from 20k to 16k in 1.9.0.
189 FLTFLAGS += -s 16000