Makefile.flags 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. ## TODO:
  31. ## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA:
  32. ## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM
  33. ## and no easy way to convince it to shut the hell up.
  34. ## We have a lot of such things all over the place.
  35. ## Classic *(off_t*)(void*)ptr does not work,
  36. ## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; })
  37. ## stuff in macros. This would obfuscate the code too much.
  38. ## Maybe try __attribute__((__may_alias__))?
  39. #CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
  40. endif
  41. # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
  42. CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
  43. CFLAGS += $(call cc-option,-fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
  44. # -fno-guess-branch-probability: prohibit pseudo-random guessing
  45. # of branch probabilities (hopefully makes bloatcheck more stable):
  46. CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
  47. CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
  48. CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
  49. # FIXME: These warnings are at least partially to be concerned about and should
  50. # be fixed..
  51. #CFLAGS += $(call cc-option,-Wconversion,)
  52. ifneq ($(CONFIG_DEBUG),y)
  53. CFLAGS += $(call cc-option,-Os,)
  54. else
  55. CFLAGS += $(call cc-option,-g,)
  56. #CFLAGS += "-D_FORTIFY_SOURCE=2"
  57. ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
  58. CFLAGS += $(call cc-option,-O0,)
  59. else
  60. CFLAGS += $(call cc-option,-Os,)
  61. endif
  62. endif
  63. # If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
  64. ARCH_FPIC ?= -fpic
  65. ARCH_FPIE ?= -fpie
  66. ARCH_PIE ?= -pie
  67. ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
  68. # on i386: 14% smaller libbusybox.so
  69. # (code itself is 9% bigger, we save on relocs/PLT/GOT)
  70. CFLAGS += $(ARCH_FPIC)
  71. # and another 4% reduction of libbusybox.so:
  72. # (external entry points must be marked EXTERNALLY_VISIBLE)
  73. CFLAGS += $(call cc-option,-fvisibility=hidden)
  74. endif
  75. ifeq ($(CONFIG_STATIC),y)
  76. CFLAGS_busybox += -static
  77. endif
  78. ifeq ($(CONFIG_PIE),y)
  79. CFLAGS_busybox += $(ARCH_PIE)
  80. CFLAGS += $(ARCH_FPIE)
  81. endif
  82. ifneq ($(CONFIG_EXTRA_CFLAGS),)
  83. CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
  84. #"))
  85. endif
  86. LDLIBS += m crypt
  87. ifeq ($(CONFIG_PAM),y)
  88. LDLIBS += pam pam_misc
  89. endif
  90. ifeq ($(CONFIG_SELINUX),y)
  91. LDLIBS += selinux sepol
  92. endif
  93. ifeq ($(CONFIG_EFENCE),y)
  94. LDLIBS += efence
  95. endif
  96. ifeq ($(CONFIG_DMALLOC),y)
  97. LDLIBS += dmalloc
  98. endif
  99. # If a flat binary should be built, CFLAGS_busybox="-elf2flt"
  100. # env var should be set for make invocation.
  101. # Here we check whether CFLAGS_busybox indeed contains that flag.
  102. # (For historical reasons, we also check LDFLAGS, which doesn't
  103. # seem to be entirely correct variable to put "-elf2flt" into).
  104. W_ELF2FLT = -elf2flt
  105. ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
  106. SKIP_STRIP = y
  107. endif
  108. # Busybox is a stack-fatty so make sure we increase default size
  109. # TODO: use "make stksizes" to find & fix big stack users
  110. # (we stole scripts/checkstack.pl from the kernel... thanks guys!)
  111. # Reduced from 20k to 16k in 1.9.0.
  112. FLTFLAGS += -s 16000