blob: 1cec5ba20b4739e42163a26df35e0e35f1c0ca23 [file] [log] [blame]
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001# ==========================================================================
Denis Vlasenkoda8f43f2006-10-09 19:47:38 +00002# Build system
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00003# ==========================================================================
4
5BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Denis Vlasenkodef88982007-10-07 17:06:01 +00006export BB_VER
Mike Frysingerb78d5612010-11-16 09:01:30 -05007SKIP_STRIP ?= n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008
Denis Vlasenkobf11e892006-11-26 22:17:46 +00009# -std=gnu99 needed for [U]LLONG_MAX on some systems
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000010CPPFLAGS += $(call cc-option,-std=gnu99,)
Denis Vlasenko9dca07d2007-01-27 14:03:15 +000011
Denis Vlasenko7039a662006-10-08 17:54:47 +000012CPPFLAGS += \
13 -Iinclude -Ilibbb \
Denis Vlasenko4b04f542008-05-08 16:26:49 +000014 $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include -I$(srctree)/libbb) \
Denis Vlasenko7039a662006-10-08 17:54:47 +000015 -include include/autoconf.h \
16 -D_GNU_SOURCE -DNDEBUG \
17 $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \
Jean-Philippe Bruckered8af512020-03-12 17:19:45 +010018 -DBB_VER=$(squote)$(quote)$(BB_VER)$(quote)$(squote)
Bernhard Reutner-Fischerfeea1b92006-12-06 21:51:59 +000019
Denis Vlasenko55995022008-05-18 22:28:26 +000020CFLAGS += $(call cc-option,-Wall,)
21CFLAGS += $(call cc-option,-Wshadow,)
22CFLAGS += $(call cc-option,-Wwrite-strings,)
23CFLAGS += $(call cc-option,-Wundef,)
24CFLAGS += $(call cc-option,-Wstrict-prototypes,)
Denis Vlasenko68404f12008-03-17 09:00:54 +000025CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,)
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000026CFLAGS += $(call cc-option,-Wunused-function -Wunused-value,)
Denis Vlasenkoe2513372008-05-15 21:44:46 +000027CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,)
Mike Frysingerca81a932012-08-04 16:14:24 -040028CFLAGS += $(call cc-option,-Wno-format-security,)
Denis Vlasenko55995022008-05-18 22:28:26 +000029# warn about C99 declaration after statement
30CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
Denis Vlasenkoe2513372008-05-15 21:44:46 +000031# If you want to add more -Wsomething above, make sure that it is
32# still possible to build bbox without warnings.
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000033
Denis Vlasenko4bb31892007-02-01 01:51:36 +000034ifeq ($(CONFIG_WERROR),y)
35CFLAGS += $(call cc-option,-Werror,)
Denys Vlasenkodc3d8932009-08-22 02:34:10 +020036## 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.
Dan Fandrich1821d182010-02-04 04:04:56 +010044## Maybe try __attribute__((__may_alias__))?
Denys Vlasenkodc3d8932009-08-22 02:34:10 +020045#CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
Denis Vlasenko4bb31892007-02-01 01:51:36 +000046endif
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000047# gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
48CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
49
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020050ifneq ($(CC),clang)
51# "clang-9: warning: optimization flag '-finline-limit=0' is not supported
52CFLAGS += $(call cc-option,-finline-limit=0,)
53endif
54
55CFLAGS += $(call cc-option,-fno-builtin-strlen -fomit-frame-pointer -ffunction-sections -fdata-sections,)
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +000056# -fno-guess-branch-probability: prohibit pseudo-random guessing
Denis Vlasenko9dca07d2007-01-27 14:03:15 +000057# of branch probabilities (hopefully makes bloatcheck more stable):
58CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020059CFLAGS += $(call cc-option,-funsigned-char,)
60
Denys Vlasenko39646dc2020-12-16 21:53:05 +010061ifeq ($(CONFIG_STATIC_LIBGCC),y)
62# Disable it, for example, if you get
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020063# "clang-9: warning: argument unused during compilation: '-static-libgcc'"
64CFLAGS += $(call cc-option,-static-libgcc,)
65endif
66
67CFLAGS += $(call cc-option,-falign-functions=1,)
68ifneq ($(CC),clang)
69# "clang-9: warning: optimization flag '-falign-jumps=1' is not supported" (and same for other two)
70CFLAGS += $(call cc-option,-falign-jumps=1 -falign-labels=1 -falign-loops=1,)
71endif
72
Denys Vlasenko9b80b902012-09-04 11:46:44 +020073# Defeat .eh_frame bloat (gcc 4.6.3 x86-32 defconfig: 20% smaller busybox binary):
74CFLAGS += $(call cc-option,-fno-unwind-tables,)
75CFLAGS += $(call cc-option,-fno-asynchronous-unwind-tables,)
Denys Vlasenkod60752f2015-10-07 22:42:45 +020076# No automatic printf->puts,putchar conversions
77# (try disabling this and comparing assembly, it's instructive)
78CFLAGS += $(call cc-option,-fno-builtin-printf,)
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000079
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020080# clang-9 does not like "str" + N and "if (CONFIG_ITEM && cond)" constructs
Biswapriyo Nath505eeae2020-06-09 23:05:12 +053081ifeq ($(CC),clang)
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020082CFLAGS += $(call cc-option,-Wno-string-plus-int -Wno-constant-logical-operand)
Biswapriyo Nath505eeae2020-06-09 23:05:12 +053083endif
Denys Vlasenkob4ef2e32019-10-25 12:56:51 +020084
Bernhard Reutner-Fischerfdcd7c42007-01-22 17:50:21 +000085# FIXME: These warnings are at least partially to be concerned about and should
86# be fixed..
Bernhard Reutner-Fischere6ce8242008-08-05 19:06:35 +000087#CFLAGS += $(call cc-option,-Wconversion,)
Bernhard Reutner-Fischer9729e652006-12-13 17:44:24 +000088
Denis Vlasenkobd8390a2008-06-12 20:23:03 +000089ifneq ($(CONFIG_DEBUG),y)
Bernhard Reutner-Fischer7fbfb202022-04-24 18:36:10 +020090CFLAGS += $(call cc-option,-Oz,$(call cc-option,-Os,$(call cc-option,-O2,)))
Denis Vlasenkobd8390a2008-06-12 20:23:03 +000091else
92CFLAGS += $(call cc-option,-g,)
Bernhard Reutner-Fischere6ce8242008-08-05 19:06:35 +000093#CFLAGS += "-D_FORTIFY_SOURCE=2"
Denis Vlasenkobd8390a2008-06-12 20:23:03 +000094ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
95CFLAGS += $(call cc-option,-O0,)
96else
Bernhard Reutner-Fischer7fbfb202022-04-24 18:36:10 +020097CFLAGS += $(call cc-option,-Oz,$(call cc-option,-Os,$(call cc-option,-O2,)))
Denis Vlasenkobd8390a2008-06-12 20:23:03 +000098endif
Bernhard Reutner-Fischer9729e652006-12-13 17:44:24 +000099endif
Mike Frysinger43e56632016-02-12 22:12:47 -0500100ifeq ($(CONFIG_DEBUG_SANITIZE),y)
101CFLAGS += $(call cc-option,-fsanitize=address,)
102CFLAGS += $(call cc-option,-fsanitize=leak,)
103CFLAGS += $(call cc-option,-fsanitize=undefined,)
104endif
Bernhard Reutner-Fischer9729e652006-12-13 17:44:24 +0000105
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000106# If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
107ARCH_FPIC ?= -fpic
108ARCH_FPIE ?= -fpie
109ARCH_PIE ?= -pie
110
Mike Frysinger5694afd2012-10-20 15:01:26 -0400111# Usage: $(eval $(call pkg_check_modules,VARIABLE-PREFIX,MODULES))
112define pkg_check_modules
113$(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2))
114$(1)_LIBS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --libs $(2))
115endef
116
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000117ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
Denis Vlasenko8d82cf72007-10-11 10:02:52 +0000118# on i386: 14% smaller libbusybox.so
119# (code itself is 9% bigger, we save on relocs/PLT/GOT)
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000120CFLAGS += $(ARCH_FPIC)
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000121# and another 4% reduction of libbusybox.so:
122# (external entry points must be marked EXTERNALLY_VISIBLE)
123CFLAGS += $(call cc-option,-fvisibility=hidden)
Denis Vlasenko8d82cf72007-10-11 10:02:52 +0000124endif
125
Bernhard Reutner-Fischerc1feac62007-01-08 16:29:15 +0000126ifeq ($(CONFIG_STATIC),y)
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000127CFLAGS_busybox += -static
Mike Frysinger5694afd2012-10-20 15:01:26 -0400128PKG_CONFIG_FLAGS += --static
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000129endif
130
131ifeq ($(CONFIG_PIE),y)
132CFLAGS_busybox += $(ARCH_PIE)
133CFLAGS += $(ARCH_FPIE)
Bernhard Reutner-Fischerc1feac62007-01-08 16:29:15 +0000134endif
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000135
Bernhard Reutner-Fischerf6107c72009-01-22 13:27:14 +0000136ifneq ($(CONFIG_EXTRA_CFLAGS),)
137CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
138#"))
139endif
140
Denys Vlasenko39c2cb22012-03-08 00:20:01 +0100141# Note: both "" (string consisting of two quote chars) and empty string
142# are possible, and should be skipped below.
143ifneq ($(subst "",,$(CONFIG_SYSROOT)),)
Rob Walkerbf634372012-03-07 12:25:53 +0100144CFLAGS += --sysroot=$(CONFIG_SYSROOT)
145export SYSROOT=$(CONFIG_SYSROOT)
146endif
147
Denys Vlasenkoeb1b2902021-04-14 19:01:53 +0200148# libm may be needed for dc, awk, ntpd
149LDLIBS += m
Denys Vlasenkoc5289172012-03-10 16:30:00 +0100150# Android has no separate crypt library
Denys Vlasenko6dca1722012-04-20 18:24:09 +0200151# gcc-4.2.1 fails if we try to feed C source on stdin:
152# echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc -
153# fall back to using a temp file:
Martin Kaiser9b678802021-11-08 17:36:43 +0100154CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >bb_libtest.c; $(CC) $(CFLAGS) $(CFLAGS_busybox) -lcrypt -o /dev/null bb_libtest.c >/dev/null 2>&1 && echo "y"; rm bb_libtest.c)
155RT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >bb_libtest.c; $(CC) $(CFLAGS) $(CFLAGS_busybox) -lrt -o /dev/null bb_libtest.c >/dev/null 2>&1 && echo "y"; rm bb_libtest.c)
Denys Vlasenkoc5289172012-03-10 16:30:00 +0100156ifeq ($(CRYPT_AVAILABLE),y)
Denys Vlasenkoeb1b2902021-04-14 19:01:53 +0200157LDLIBS += crypt
Denys Vlasenkoc5289172012-03-10 16:30:00 +0100158endif
Denys Vlasenkobe5a5052019-10-24 16:26:55 +0200159# librt may be needed for clock_gettime()
Denys Vlasenkoeb1b2902021-04-14 19:01:53 +0200160ifeq ($(RT_AVAILABLE),y)
161LDLIBS += rt
162endif
Denys Vlasenkoc5289172012-03-10 16:30:00 +0100163
Denys Vlasenkoc8e5ead2015-10-12 03:12:17 +0200164# libpam may use libpthread, libdl and/or libaudit.
165# On some platforms that requires an explicit -lpthread, -ldl, -laudit.
166# However, on *other platforms* it fails when some of those flags
167# given needlessly. On some systems, crypt needs pthread.
168#
169# I even had a system where a runtime test for pthread
170# (similar to CRYPT_AVAILABLE test above) was not reliable.
171#
172# Do not propagate this mess by adding libraries to CONFIG_PAM/CRYPT_AVAILABLE blocks.
173# Add libraries you need to CONFIG_EXTRA_LDLIBS instead.
Denys Vlasenko2156e222015-09-04 04:20:51 +0200174
Denis Vlasenkod6e81c72007-08-21 10:58:18 +0000175ifeq ($(CONFIG_PAM),y)
Denys Vlasenkoc8e5ead2015-10-12 03:12:17 +0200176LDLIBS += pam pam_misc
Denis Vlasenkod6e81c72007-08-21 10:58:18 +0000177endif
178
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000179ifeq ($(CONFIG_SELINUX),y)
Mike Frysinger5694afd2012-10-20 15:01:26 -0400180SELINUX_PC_MODULES = libselinux libsepol
181$(eval $(call pkg_check_modules,SELINUX,$(SELINUX_PC_MODULES)))
182CPPFLAGS += $(SELINUX_CFLAGS)
183LDLIBS += $(if $(SELINUX_LIBS),$(SELINUX_LIBS:-l%=%),$(SELINUX_PC_MODULES:lib%=%))
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000184endif
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +0000185
Denys Vlasenkofa87abe2018-04-16 11:04:03 +0200186ifeq ($(CONFIG_FEATURE_NSLOOKUP_BIG),y)
Denys Vlasenko8ed57db2023-01-02 17:10:04 +0100187ifneq (,$(findstring linux,$(shell $(CC) $(CFLAGS) -dumpmachine)))
188LDLIBS += resolv
189endif
Samuel Thibault77216c32022-10-16 02:04:59 +0200190ifneq (,$(findstring gnu,$(shell $(CC) $(CFLAGS) -dumpmachine)))
Denys Vlasenkofa87abe2018-04-16 11:04:03 +0200191LDLIBS += resolv
192endif
Alex Samorukov05449332021-01-04 01:22:24 +0100193endif
Denys Vlasenkofa87abe2018-04-16 11:04:03 +0200194
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +0000195ifeq ($(CONFIG_EFENCE),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +0000196LDLIBS += efence
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +0000197endif
198
199ifeq ($(CONFIG_DMALLOC),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +0000200LDLIBS += dmalloc
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +0000201endif
202
Mike Frysingerdec37b32009-03-12 07:56:49 +0000203# If a flat binary should be built, CFLAGS_busybox="-elf2flt"
Denis Vlasenko401de642008-06-06 16:11:12 +0000204# env var should be set for make invocation.
205# Here we check whether CFLAGS_busybox indeed contains that flag.
206# (For historical reasons, we also check LDFLAGS, which doesn't
Mike Frysingerdec37b32009-03-12 07:56:49 +0000207# seem to be entirely correct variable to put "-elf2flt" into).
208W_ELF2FLT = -elf2flt
Denis Vlasenko401de642008-06-06 16:11:12 +0000209ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
Mike Frysinger5b5bcf22007-06-19 15:58:02 +0000210SKIP_STRIP = y
211endif
212
Rob Walkerbf634372012-03-07 12:25:53 +0100213ifneq ($(CONFIG_EXTRA_LDFLAGS),)
Denys Vlasenkoe0ddb652015-04-14 14:15:15 +0200214LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
Rob Walkerbf634372012-03-07 12:25:53 +0100215#"))
216endif
217
Mike Frysingerc7b10dc2007-04-05 21:10:59 +0000218# Busybox is a stack-fatty so make sure we increase default size
Denis Vlasenko931de892007-06-21 12:43:45 +0000219# TODO: use "make stksizes" to find & fix big stack users
220# (we stole scripts/checkstack.pl from the kernel... thanks guys!)
Denis Vlasenkofcfb5c02007-12-24 12:16:24 +0000221# Reduced from 20k to 16k in 1.9.0.
222FLTFLAGS += -s 16000