Makefile.flags 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. -DBB_VER=$(squote)$(quote)$(BB_VER)$(quote)$(squote)
  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. CFLAGS += $(call cc-option,-Wno-format-security,)
  25. # warn about C99 declaration after statement
  26. CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
  27. # If you want to add more -Wsomething above, make sure that it is
  28. # still possible to build bbox without warnings.
  29. ifeq ($(CONFIG_WERROR),y)
  30. CFLAGS += $(call cc-option,-Werror,)
  31. ## TODO:
  32. ## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA:
  33. ## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM
  34. ## and no easy way to convince it to shut the hell up.
  35. ## We have a lot of such things all over the place.
  36. ## Classic *(off_t*)(void*)ptr does not work,
  37. ## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; })
  38. ## stuff in macros. This would obfuscate the code too much.
  39. ## Maybe try __attribute__((__may_alias__))?
  40. #CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing)
  41. endif
  42. # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
  43. CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
  44. ifneq ($(CC),clang)
  45. # "clang-9: warning: optimization flag '-finline-limit=0' is not supported
  46. CFLAGS += $(call cc-option,-finline-limit=0,)
  47. endif
  48. CFLAGS += $(call cc-option,-fno-builtin-strlen -fomit-frame-pointer -ffunction-sections -fdata-sections,)
  49. # -fno-guess-branch-probability: prohibit pseudo-random guessing
  50. # of branch probabilities (hopefully makes bloatcheck more stable):
  51. CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
  52. CFLAGS += $(call cc-option,-funsigned-char,)
  53. ifneq ($(CC),clang)
  54. # "clang-9: warning: argument unused during compilation: '-static-libgcc'"
  55. CFLAGS += $(call cc-option,-static-libgcc,)
  56. endif
  57. CFLAGS += $(call cc-option,-falign-functions=1,)
  58. ifneq ($(CC),clang)
  59. # "clang-9: warning: optimization flag '-falign-jumps=1' is not supported" (and same for other two)
  60. CFLAGS += $(call cc-option,-falign-jumps=1 -falign-labels=1 -falign-loops=1,)
  61. endif
  62. # Defeat .eh_frame bloat (gcc 4.6.3 x86-32 defconfig: 20% smaller busybox binary):
  63. CFLAGS += $(call cc-option,-fno-unwind-tables,)
  64. CFLAGS += $(call cc-option,-fno-asynchronous-unwind-tables,)
  65. # No automatic printf->puts,putchar conversions
  66. # (try disabling this and comparing assembly, it's instructive)
  67. CFLAGS += $(call cc-option,-fno-builtin-printf,)
  68. # clang-9 does not like "str" + N and "if (CONFIG_ITEM && cond)" constructs
  69. ifeq ($(CC),clang)
  70. CFLAGS += $(call cc-option,-Wno-string-plus-int -Wno-constant-logical-operand)
  71. endif
  72. # FIXME: These warnings are at least partially to be concerned about and should
  73. # be fixed..
  74. #CFLAGS += $(call cc-option,-Wconversion,)
  75. ifneq ($(CONFIG_DEBUG),y)
  76. CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
  77. else
  78. CFLAGS += $(call cc-option,-g,)
  79. #CFLAGS += "-D_FORTIFY_SOURCE=2"
  80. ifeq ($(CONFIG_DEBUG_PESSIMIZE),y)
  81. CFLAGS += $(call cc-option,-O0,)
  82. else
  83. CFLAGS += $(call cc-option,-Os,$(call cc-option,-O2,))
  84. endif
  85. endif
  86. ifeq ($(CONFIG_DEBUG_SANITIZE),y)
  87. CFLAGS += $(call cc-option,-fsanitize=address,)
  88. CFLAGS += $(call cc-option,-fsanitize=leak,)
  89. CFLAGS += $(call cc-option,-fsanitize=undefined,)
  90. endif
  91. # If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)...
  92. ARCH_FPIC ?= -fpic
  93. ARCH_FPIE ?= -fpie
  94. ARCH_PIE ?= -pie
  95. # Usage: $(eval $(call pkg_check_modules,VARIABLE-PREFIX,MODULES))
  96. define pkg_check_modules
  97. $(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2))
  98. $(1)_LIBS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --libs $(2))
  99. endef
  100. ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y)
  101. # on i386: 14% smaller libbusybox.so
  102. # (code itself is 9% bigger, we save on relocs/PLT/GOT)
  103. CFLAGS += $(ARCH_FPIC)
  104. # and another 4% reduction of libbusybox.so:
  105. # (external entry points must be marked EXTERNALLY_VISIBLE)
  106. CFLAGS += $(call cc-option,-fvisibility=hidden)
  107. endif
  108. ifeq ($(CONFIG_STATIC),y)
  109. CFLAGS_busybox += -static
  110. PKG_CONFIG_FLAGS += --static
  111. endif
  112. ifeq ($(CONFIG_PIE),y)
  113. CFLAGS_busybox += $(ARCH_PIE)
  114. CFLAGS += $(ARCH_FPIE)
  115. endif
  116. ifneq ($(CONFIG_EXTRA_CFLAGS),)
  117. CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS)))
  118. #"))
  119. endif
  120. # Note: both "" (string consisting of two quote chars) and empty string
  121. # are possible, and should be skipped below.
  122. ifneq ($(subst "",,$(CONFIG_SYSROOT)),)
  123. CFLAGS += --sysroot=$(CONFIG_SYSROOT)
  124. export SYSROOT=$(CONFIG_SYSROOT)
  125. endif
  126. # Android has no separate crypt library
  127. # gcc-4.2.1 fails if we try to feed C source on stdin:
  128. # echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc -
  129. # fall back to using a temp file:
  130. CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >crypttest.c; $(CC) $(CFLAGS) -lcrypt -o /dev/null crypttest.c >/dev/null 2>&1 && echo "y"; rm crypttest.c)
  131. ifeq ($(CRYPT_AVAILABLE),y)
  132. LDLIBS += m rt crypt
  133. else
  134. LDLIBS += m rt
  135. endif
  136. # libm may be needed for dc, awk, ntpd
  137. # librt may be needed for clock_gettime()
  138. # libpam may use libpthread, libdl and/or libaudit.
  139. # On some platforms that requires an explicit -lpthread, -ldl, -laudit.
  140. # However, on *other platforms* it fails when some of those flags
  141. # given needlessly. On some systems, crypt needs pthread.
  142. #
  143. # I even had a system where a runtime test for pthread
  144. # (similar to CRYPT_AVAILABLE test above) was not reliable.
  145. #
  146. # Do not propagate this mess by adding libraries to CONFIG_PAM/CRYPT_AVAILABLE blocks.
  147. # Add libraries you need to CONFIG_EXTRA_LDLIBS instead.
  148. ifeq ($(CONFIG_PAM),y)
  149. LDLIBS += pam pam_misc
  150. endif
  151. ifeq ($(CONFIG_SELINUX),y)
  152. SELINUX_PC_MODULES = libselinux libsepol
  153. $(eval $(call pkg_check_modules,SELINUX,$(SELINUX_PC_MODULES)))
  154. CPPFLAGS += $(SELINUX_CFLAGS)
  155. LDLIBS += $(if $(SELINUX_LIBS),$(SELINUX_LIBS:-l%=%),$(SELINUX_PC_MODULES:lib%=%))
  156. endif
  157. ifeq ($(CONFIG_FEATURE_NSLOOKUP_BIG),y)
  158. LDLIBS += resolv
  159. endif
  160. ifeq ($(CONFIG_EFENCE),y)
  161. LDLIBS += efence
  162. endif
  163. ifeq ($(CONFIG_DMALLOC),y)
  164. LDLIBS += dmalloc
  165. endif
  166. # If a flat binary should be built, CFLAGS_busybox="-elf2flt"
  167. # env var should be set for make invocation.
  168. # Here we check whether CFLAGS_busybox indeed contains that flag.
  169. # (For historical reasons, we also check LDFLAGS, which doesn't
  170. # seem to be entirely correct variable to put "-elf2flt" into).
  171. W_ELF2FLT = -elf2flt
  172. ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox)))
  173. SKIP_STRIP = y
  174. endif
  175. ifneq ($(CONFIG_EXTRA_LDFLAGS),)
  176. LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
  177. #"))
  178. endif
  179. ifneq ($(CONFIG_EXTRA_LDLIBS),)
  180. LDLIBS += $(strip $(subst ",,$(CONFIG_EXTRA_LDLIBS)))
  181. #"))
  182. endif
  183. # Busybox is a stack-fatty so make sure we increase default size
  184. # TODO: use "make stksizes" to find & fix big stack users
  185. # (we stole scripts/checkstack.pl from the kernel... thanks guys!)
  186. # Reduced from 20k to 16k in 1.9.0.
  187. FLTFLAGS += -s 16000