2006-10-05 10:17:08 +00:00
|
|
|
# ==========================================================================
|
2006-10-09 19:47:38 +00:00
|
|
|
# Build system
|
2006-10-05 10:17:08 +00:00
|
|
|
# ==========================================================================
|
|
|
|
|
|
|
|
BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
|
2007-10-07 17:06:01 +00:00
|
|
|
export BB_VER
|
2007-06-19 15:58:02 +00:00
|
|
|
SKIP_STRIP = n
|
2006-10-05 10:17:08 +00:00
|
|
|
|
2006-11-26 22:17:46 +00:00
|
|
|
# -std=gnu99 needed for [U]LLONG_MAX on some systems
|
2007-01-23 11:39:13 +00:00
|
|
|
CPPFLAGS += $(call cc-option,-std=gnu99,)
|
2007-01-27 14:03:15 +00:00
|
|
|
|
2006-10-08 17:54:47 +00:00
|
|
|
CPPFLAGS += \
|
|
|
|
-Iinclude -Ilibbb \
|
2008-05-08 16:26:49 +00:00
|
|
|
$(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include -I$(srctree)/libbb) \
|
2006-10-08 17:54:47 +00:00
|
|
|
-include include/autoconf.h \
|
|
|
|
-D_GNU_SOURCE -DNDEBUG \
|
|
|
|
$(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \
|
2006-12-06 21:51:59 +00:00
|
|
|
-D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP
|
|
|
|
|
2008-05-18 22:28:26 +00:00
|
|
|
CFLAGS += $(call cc-option,-Wall,)
|
|
|
|
CFLAGS += $(call cc-option,-Wshadow,)
|
|
|
|
CFLAGS += $(call cc-option,-Wwrite-strings,)
|
|
|
|
CFLAGS += $(call cc-option,-Wundef,)
|
|
|
|
CFLAGS += $(call cc-option,-Wstrict-prototypes,)
|
2008-03-17 09:00:54 +00:00
|
|
|
CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,)
|
2009-02-18 13:23:46 +00:00
|
|
|
CFLAGS += $(call cc-option,-Wunused-function -Wunused-value,)
|
2008-05-15 21:44:46 +00:00
|
|
|
CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,)
|
2008-05-18 22:28:26 +00:00
|
|
|
# warn about C99 declaration after statement
|
|
|
|
CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
|
2008-05-15 21:44:46 +00:00
|
|
|
# If you want to add more -Wsomething above, make sure that it is
|
|
|
|
# still possible to build bbox without warnings.
|
2007-01-29 17:08:51 +00:00
|
|
|
|
2007-02-01 01:51:36 +00:00
|
|
|
ifeq ($(CONFIG_WERROR),y)
|
|
|
|
CFLAGS += $(call cc-option,-Werror,)
|
2009-08-22 00:34:10 +00:00
|
|
|
## TODO:
|
|
|
|
## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA:
|
|
|
|
## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM
|
|
|
|
## and no easy way to convince it to shut the hell up.
|
|
|
|
## We have a lot of such things all over the place.
|
|
|
|
## Classic *(off_t*)(void*)ptr does not work,
|
|
|
|
## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; })
|
|
|
|
## stuff in macros. This would obfuscate the code too much.
|
2010-02-04 03:04:56 +00:00
|
|
|
## Maybe try __attribute__((__may_alias__))?
|
2009-08-22 00:34:10 +00:00
|
|
|
#CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
|
2007-02-01 01:51:36 +00:00
|
|
|
endif
|
2007-01-29 17:08:51 +00:00
|
|
|
# gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
|
|
|
|
CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
|
|
|
|
|
2008-06-12 20:23:03 +00:00
|
|
|
CFLAGS += $(call cc-option,-fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
|
2007-01-27 13:44:53 +00:00
|
|
|
# -fno-guess-branch-probability: prohibit pseudo-random guessing
|
2007-01-27 14:03:15 +00:00
|
|
|
# of branch probabilities (hopefully makes bloatcheck more stable):
|
|
|
|
CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
|
|
|
|
CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
|
2007-01-27 13:44:53 +00:00
|
|
|
CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
|
2007-01-23 11:39:13 +00:00
|
|
|
|
2007-01-22 17:50:21 +00:00
|
|
|
# FIXME: These warnings are at least partially to be concerned about and should
|
|
|
|
# be fixed..
|
2008-08-05 19:06:35 +00:00
|
|
|
#CFLAGS += $(call cc-option,-Wconversion,)
|
2006-12-13 17:44:24 +00:00
|
|
|
|
2008-06-12 20:23:03 +00:00
|
|
|
ifneq ($(CONFIG_DEBUG),y)
|
|
|
|
CFLAGS += $(call cc-option,-Os,)
|
|
|
|
else
|
|
|
|
CFLAGS += $(call cc-option,-g,)
|
2008-08-05 19:06:35 +00:00
|
|
|
#CFLAGS += "-D_FORTIFY_SOURCE=2"
|
2008-06-12 20:23:03 +00:00
|
|
|
ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
|
|
|
|
CFLAGS += $(call cc-option,-O0,)
|
|
|
|
else
|
|
|
|
CFLAGS += $(call cc-option,-Os,)
|
|
|
|
endif
|
2006-12-13 17:44:24 +00:00
|
|
|
endif
|
|
|
|
|
2008-06-04 11:28:24 +00:00
|
|
|
# If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
|
|
|
|
ARCH_FPIC ?= -fpic
|
|
|
|
ARCH_FPIE ?= -fpie
|
|
|
|
ARCH_PIE ?= -pie
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
|
2007-10-11 10:02:52 +00:00
|
|
|
# on i386: 14% smaller libbusybox.so
|
|
|
|
# (code itself is 9% bigger, we save on relocs/PLT/GOT)
|
2008-06-04 11:28:24 +00:00
|
|
|
CFLAGS += $(ARCH_FPIC)
|
2007-10-11 10:05:36 +00:00
|
|
|
# and another 4% reduction of libbusybox.so:
|
|
|
|
# (external entry points must be marked EXTERNALLY_VISIBLE)
|
|
|
|
CFLAGS += $(call cc-option,-fvisibility=hidden)
|
2007-10-11 10:02:52 +00:00
|
|
|
endif
|
|
|
|
|
2007-01-08 16:29:15 +00:00
|
|
|
ifeq ($(CONFIG_STATIC),y)
|
2008-06-04 11:28:24 +00:00
|
|
|
CFLAGS_busybox += -static
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_PIE),y)
|
|
|
|
CFLAGS_busybox += $(ARCH_PIE)
|
|
|
|
CFLAGS += $(ARCH_FPIE)
|
2007-01-08 16:29:15 +00:00
|
|
|
endif
|
2007-02-06 19:28:50 +00:00
|
|
|
|
2009-01-22 13:27:14 +00:00
|
|
|
ifneq ($(CONFIG_EXTRA_CFLAGS),)
|
|
|
|
CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
|
|
|
|
#"))
|
|
|
|
endif
|
|
|
|
|
2007-10-07 17:06:01 +00:00
|
|
|
LDLIBS += m crypt
|
2007-08-21 10:58:18 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_PAM),y)
|
2007-10-07 17:05:42 +00:00
|
|
|
LDLIBS += pam pam_misc
|
2007-08-21 10:58:18 +00:00
|
|
|
endif
|
|
|
|
|
2007-02-06 19:28:50 +00:00
|
|
|
ifeq ($(CONFIG_SELINUX),y)
|
2007-10-07 17:05:42 +00:00
|
|
|
LDLIBS += selinux sepol
|
2007-02-06 19:28:50 +00:00
|
|
|
endif
|
2007-03-28 15:00:27 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_EFENCE),y)
|
2007-10-07 17:05:42 +00:00
|
|
|
LDLIBS += efence
|
2007-03-28 15:00:27 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_DMALLOC),y)
|
2007-10-07 17:05:42 +00:00
|
|
|
LDLIBS += dmalloc
|
2007-03-28 15:00:27 +00:00
|
|
|
endif
|
|
|
|
|
2009-03-12 07:56:49 +00:00
|
|
|
# If a flat binary should be built, CFLAGS_busybox="-elf2flt"
|
2008-06-06 16:11:12 +00:00
|
|
|
# env var should be set for make invocation.
|
|
|
|
# Here we check whether CFLAGS_busybox indeed contains that flag.
|
|
|
|
# (For historical reasons, we also check LDFLAGS, which doesn't
|
2009-03-12 07:56:49 +00:00
|
|
|
# seem to be entirely correct variable to put "-elf2flt" into).
|
|
|
|
W_ELF2FLT = -elf2flt
|
2008-06-06 16:11:12 +00:00
|
|
|
ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
|
2007-06-19 15:58:02 +00:00
|
|
|
SKIP_STRIP = y
|
|
|
|
endif
|
|
|
|
|
2007-04-05 21:10:59 +00:00
|
|
|
# Busybox is a stack-fatty so make sure we increase default size
|
2007-06-21 12:43:45 +00:00
|
|
|
# TODO: use "make stksizes" to find & fix big stack users
|
|
|
|
# (we stole scripts/checkstack.pl from the kernel... thanks guys!)
|
2007-12-24 12:16:24 +00:00
|
|
|
# Reduced from 20k to 16k in 1.9.0.
|
|
|
|
FLTFLAGS += -s 16000
|