blob: 61bff4f6690be453366d4dff773d70fe68c11746 [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 Frysinger5b5bcf22007-06-19 15:58:02 +00007SKIP_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 \
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) \
Bernhard Reutner-Fischerfeea1b92006-12-06 21:51:59 +000018 -D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP
19
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000020# flag checks are grouped together to speed the checks up a bit..
Denis Vlasenko4bb31892007-02-01 01:51:36 +000021CFLAGS += $(call cc-option,-Wall -Wshadow -Wwrite-strings,)
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000022CFLAGS += $(call cc-option,-Wundef -Wstrict-prototypes,)
Denis Vlasenko68404f12008-03-17 09:00:54 +000023CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,)
Denis Vlasenko9dca07d2007-01-27 14:03:15 +000024# If you want to add "-Wmissing-prototypes -Wmissing-declarations" above
25# (or anything else for that matter) make sure that it is still possible
26# to build bbox without warnings. Current offender: find.c:alloc_action().
27# Looks more like gcc bug: gcc will warn on it with or without prototype.
28# But still, warning-free compile is a must, or else we will drown
29# in warnings pretty soon.
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000030
Denis Vlasenko4bb31892007-02-01 01:51:36 +000031ifeq ($(CONFIG_WERROR),y)
32CFLAGS += $(call cc-option,-Werror,)
Bernhard Reutner-Fischerb7e61482007-06-21 10:28:11 +000033else
34# for development, warn a little bit about unused results..
35CPPFLAGS += -D_FORTIFY_SOURCE=2
Denis Vlasenko4bb31892007-02-01 01:51:36 +000036endif
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000037# gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
38CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
39
40# gcc emits bogus "no prev proto" warning on find.c:alloc_action()
Denis Vlasenko9dca07d2007-01-27 14:03:15 +000041ifneq ($(CONFIG_WERROR),y)
42CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,)
43endif
Denis Vlasenkoc562bb72007-01-29 17:08:51 +000044
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000045CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +000046# -fno-guess-branch-probability: prohibit pseudo-random guessing
Denis Vlasenko9dca07d2007-01-27 14:03:15 +000047# of branch probabilities (hopefully makes bloatcheck more stable):
48CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
49CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +000050CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000051
Bernhard Reutner-Fischerfdcd7c42007-01-22 17:50:21 +000052# FIXME: These warnings are at least partially to be concerned about and should
53# be fixed..
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000054#CFLAGS+=$(call cc-option,-Wconversion,)
Bernhard Reutner-Fischer9729e652006-12-13 17:44:24 +000055
56ifeq ($(CONFIG_DEBUG),y)
Bernhard Reutner-Fischer82f87882007-01-23 11:39:13 +000057CFLAGS += $(call cc-option,-g)
Bernhard Reutner-Fischer9729e652006-12-13 17:44:24 +000058endif
59
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000060ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
Denis Vlasenko8d82cf72007-10-11 10:02:52 +000061# on i386: 14% smaller libbusybox.so
62# (code itself is 9% bigger, we save on relocs/PLT/GOT)
Denis Vlasenko8d82cf72007-10-11 10:02:52 +000063CFLAGS += -fpic
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000064# and another 4% reduction of libbusybox.so:
65# (external entry points must be marked EXTERNALLY_VISIBLE)
66CFLAGS += $(call cc-option,-fvisibility=hidden)
Denis Vlasenko8d82cf72007-10-11 10:02:52 +000067endif
68
Bernhard Reutner-Fischerc1feac62007-01-08 16:29:15 +000069ifeq ($(CONFIG_STATIC),y)
70LDFLAGS += -static
71endif
Denis Vlasenkod46d3c22007-02-06 19:28:50 +000072
Denis Vlasenkodef88982007-10-07 17:06:01 +000073LDLIBS += m crypt
Denis Vlasenkod6e81c72007-08-21 10:58:18 +000074
75ifeq ($(CONFIG_PAM),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +000076LDLIBS += pam pam_misc
Denis Vlasenkod6e81c72007-08-21 10:58:18 +000077endif
78
Denis Vlasenkod46d3c22007-02-06 19:28:50 +000079ifeq ($(CONFIG_SELINUX),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +000080LDLIBS += selinux sepol
Denis Vlasenkod46d3c22007-02-06 19:28:50 +000081endif
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +000082
83ifeq ($(CONFIG_EFENCE),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +000084LDLIBS += efence
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +000085endif
86
87ifeq ($(CONFIG_DMALLOC),y)
Denis Vlasenko76a6b232007-10-07 17:05:42 +000088LDLIBS += dmalloc
Bernhard Reutner-Fischer58a275b2007-03-28 15:00:27 +000089endif
90
Bernhard Reutner-Fischerd6c23ae2007-01-08 16:38:33 +000091#LDFLAGS += -nostdlib
Mike Frysingerc7b10dc2007-04-05 21:10:59 +000092
Mike Frysinger5b5bcf22007-06-19 15:58:02 +000093LDFLAGS_ELF2FLT = -Wl,-elf2flt
94ifneq (,$(findstring $(LDFLAGS_ELF2FLT),$(LDFLAGS)))
95SKIP_STRIP = y
96endif
97
Mike Frysingerc7b10dc2007-04-05 21:10:59 +000098# Busybox is a stack-fatty so make sure we increase default size
Denis Vlasenko931de892007-06-21 12:43:45 +000099# TODO: use "make stksizes" to find & fix big stack users
100# (we stole scripts/checkstack.pl from the kernel... thanks guys!)
Denis Vlasenkofcfb5c02007-12-24 12:16:24 +0000101# Reduced from 20k to 16k in 1.9.0.
102FLTFLAGS += -s 16000