Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 1 | # ========================================================================== |
Denis Vlasenko | da8f43f | 2006-10-09 19:47:38 +0000 | [diff] [blame] | 2 | # Build system |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 3 | # ========================================================================== |
| 4 | |
| 5 | BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
| 6 | |
Denis Vlasenko | bf11e89 | 2006-11-26 22:17:46 +0000 | [diff] [blame] | 7 | # -std=gnu99 needed for [U]LLONG_MAX on some systems |
| 8 | |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 9 | CPPFLAGS += $(call cc-option,-std=gnu99,) |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 10 | CPPFLAGS += \ |
| 11 | -Iinclude -Ilibbb \ |
| 12 | $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) -I$(srctree)/libbb \ |
| 13 | -include include/autoconf.h \ |
| 14 | -D_GNU_SOURCE -DNDEBUG \ |
| 15 | $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \ |
Bernhard Reutner-Fischer | feea1b9 | 2006-12-06 21:51:59 +0000 | [diff] [blame] | 16 | -D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP |
| 17 | |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 18 | # flag checks are grouped together to speed the checks up a bit.. |
| 19 | CFLAGS += $(call cc-option,-Wall -Wshadow,) |
Denis Vlasenko | e0eebc1 | 2007-01-27 13:44:53 +0000 | [diff] [blame^] | 20 | ifeq ($(CONFIG_WERROR),y) |
| 21 | CFLAGS += $(call cc-option,-Werror,) |
| 22 | endif |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 23 | CFLAGS += $(call cc-option,-Wundef -Wold-style-definition -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations,) |
| 24 | CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,) |
Denis Vlasenko | e0eebc1 | 2007-01-27 13:44:53 +0000 | [diff] [blame^] | 25 | # -fno-guess-branch-probability: prohibit pseudo-random guessing |
| 26 | # of branch probabilities (hopefully makes bloatcheck more stable) |
| 27 | CFLAGS += $(call cc-option,-funsigned-char -fno-guess-branch-probability -static-libgcc,) |
| 28 | CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,) |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 29 | |
Bernhard Reutner-Fischer | fdcd7c4 | 2007-01-22 17:50:21 +0000 | [diff] [blame] | 30 | # FIXME: These warnings are at least partially to be concerned about and should |
| 31 | # be fixed.. |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 32 | #CFLAGS+=$(call cc-option,-Wconversion,) |
Bernhard Reutner-Fischer | 9729e65 | 2006-12-13 17:44:24 +0000 | [diff] [blame] | 33 | |
| 34 | ifeq ($(CONFIG_DEBUG),y) |
Bernhard Reutner-Fischer | 82f8788 | 2007-01-23 11:39:13 +0000 | [diff] [blame] | 35 | CFLAGS += $(call cc-option,-g) |
Bernhard Reutner-Fischer | 9729e65 | 2006-12-13 17:44:24 +0000 | [diff] [blame] | 36 | endif |
| 37 | |
Bernhard Reutner-Fischer | c1feac6 | 2007-01-08 16:29:15 +0000 | [diff] [blame] | 38 | ifeq ($(CONFIG_STATIC),y) |
| 39 | LDFLAGS += -static |
| 40 | endif |
Bernhard Reutner-Fischer | d6c23ae | 2007-01-08 16:38:33 +0000 | [diff] [blame] | 41 | #LDFLAGS += -nostdlib |