3
0

Makefile.flags 930 B

12345678910111213141516171819202122232425262728
  1. # ==========================================================================
  2. # Build system
  3. # ==========================================================================
  4. BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  5. # -std=gnu99 needed for [U]LLONG_MAX on some systems
  6. CPPFLAGS += \
  7. -std=gnu99 \
  8. -Iinclude -Ilibbb \
  9. $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) -I$(srctree)/libbb \
  10. -include include/autoconf.h \
  11. -D_GNU_SOURCE -DNDEBUG \
  12. $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \
  13. -D"BB_VER=KBUILD_STR($(BB_VER))" -DBB_BT=AUTOCONF_TIMESTAMP
  14. CFLAGS += \
  15. -Wall -Wstrict-prototypes -Wshadow -Werror -Wundef \
  16. -funsigned-char -fno-builtin-strlen -finline-limit=0 -static-libgcc \
  17. -Os -falign-functions=1 -falign-jumps=1 -falign-loops=1 \
  18. -fomit-frame-pointer -ffunction-sections -fdata-sections
  19. ifeq ($(CONFIG_DEBUG),y)
  20. CFLAGS += -g
  21. LDFLAGS += -g
  22. endif