3
0

Makefile.flags 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # ==========================================================================
  2. # Build system
  3. # ==========================================================================
  4. BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  5. export BB_VER
  6. SKIP_STRIP = n
  7. # -std=gnu99 needed for [U]LLONG_MAX on some systems
  8. CPPFLAGS += $(call cc-option,-std=gnu99,)
  9. CPPFLAGS += \
  10. -Iinclude -Ilibbb \
  11. $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include -I$(srctree)/libbb) \
  12. -include include/autoconf.h \
  13. -D_GNU_SOURCE -DNDEBUG \
  14. $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \
  15. -D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP
  16. CFLAGS += $(call cc-option,-Wall,)
  17. CFLAGS += $(call cc-option,-Wshadow,)
  18. CFLAGS += $(call cc-option,-Wwrite-strings,)
  19. CFLAGS += $(call cc-option,-Wundef,)
  20. CFLAGS += $(call cc-option,-Wstrict-prototypes,)
  21. CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,)
  22. CFLAGS += $(call cc-option,-Wunused-function -Wunused-value,)
  23. CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,)
  24. # warn about C99 declaration after statement
  25. CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
  26. # If you want to add more -Wsomething above, make sure that it is
  27. # still possible to build bbox without warnings.
  28. ifeq ($(CONFIG_WERROR),y)
  29. CFLAGS += $(call cc-option,-Werror,)
  30. endif
  31. # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
  32. CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
  33. CFLAGS += $(call cc-option,-fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
  34. # -fno-guess-branch-probability: prohibit pseudo-random guessing
  35. # of branch probabilities (hopefully makes bloatcheck more stable):
  36. CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
  37. CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
  38. CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
  39. # FIXME: These warnings are at least partially to be concerned about and should
  40. # be fixed..
  41. #CFLAGS += $(call cc-option,-Wconversion,)
  42. ifneq ($(CONFIG_DEBUG),y)
  43. CFLAGS += $(call cc-option,-Os,)
  44. else
  45. CFLAGS += $(call cc-option,-g,)
  46. #CFLAGS += "-D_FORTIFY_SOURCE=2"
  47. ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
  48. CFLAGS += $(call cc-option,-O0,)
  49. else
  50. CFLAGS += $(call cc-option,-Os,)
  51. endif
  52. endif
  53. # If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
  54. ARCH_FPIC ?= -fpic
  55. ARCH_FPIE ?= -fpie
  56. ARCH_PIE ?= -pie
  57. ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
  58. # on i386: 14% smaller libbusybox.so
  59. # (code itself is 9% bigger, we save on relocs/PLT/GOT)
  60. CFLAGS += $(ARCH_FPIC)
  61. # and another 4% reduction of libbusybox.so:
  62. # (external entry points must be marked EXTERNALLY_VISIBLE)
  63. CFLAGS += $(call cc-option,-fvisibility=hidden)
  64. endif
  65. ifeq ($(CONFIG_STATIC),y)
  66. CFLAGS_busybox += -static
  67. endif
  68. ifeq ($(CONFIG_PIE),y)
  69. CFLAGS_busybox += $(ARCH_PIE)
  70. CFLAGS += $(ARCH_FPIE)
  71. endif
  72. ifneq ($(CONFIG_EXTRA_CFLAGS),)
  73. CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
  74. #"))
  75. endif
  76. LDLIBS += m crypt
  77. ifeq ($(CONFIG_PAM),y)
  78. LDLIBS += pam pam_misc
  79. endif
  80. ifeq ($(CONFIG_SELINUX),y)
  81. LDLIBS += selinux sepol
  82. endif
  83. ifeq ($(CONFIG_EFENCE),y)
  84. LDLIBS += efence
  85. endif
  86. ifeq ($(CONFIG_DMALLOC),y)
  87. LDLIBS += dmalloc
  88. endif
  89. # If a flat binary should be built, CFLAGS_busybox="-elf2flt"
  90. # env var should be set for make invocation.
  91. # Here we check whether CFLAGS_busybox indeed contains that flag.
  92. # (For historical reasons, we also check LDFLAGS, which doesn't
  93. # seem to be entirely correct variable to put "-elf2flt" into).
  94. W_ELF2FLT = -elf2flt
  95. ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
  96. SKIP_STRIP = y
  97. endif
  98. # Busybox is a stack-fatty so make sure we increase default size
  99. # TODO: use "make stksizes" to find & fix big stack users
  100. # (we stole scripts/checkstack.pl from the kernel... thanks guys!)
  101. # Reduced from 20k to 16k in 1.9.0.
  102. FLTFLAGS += -s 16000