Makefile (cf84fd96323633be7d437e1de4505fc82ff2c11a) | Makefile (bf5438fca2950b03c21ad868090cc1a8fcd49536) |
---|---|
1VERSION = 2 2PATCHLEVEL = 6 3SUBLEVEL = 36 | 1VERSION = 2 2PATCHLEVEL = 6 3SUBLEVEL = 36 |
4EXTRAVERSION = -rc5 | 4EXTRAVERSION = -rc4 |
5NAME = Sheep on Meth 6 7# *DOCUMENTATION* 8# To see a list of typical targets execute "make help" 9# More info can be located in ./README 10# Comments in this file are targeted only to the developer, do not 11# expect to learn how to build the kernel reading this file. 12 --- 573 unchanged lines hidden (view full) --- 586KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) 587 588# disable invalid "can't wrap" optimizations for signed / pointers 589KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 590 591# conserve stack if available 592KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) 593 | 5NAME = Sheep on Meth 6 7# *DOCUMENTATION* 8# To see a list of typical targets execute "make help" 9# More info can be located in ./README 10# Comments in this file are targeted only to the developer, do not 11# expect to learn how to build the kernel reading this file. 12 --- 573 unchanged lines hidden (view full) --- 586KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) 587 588# disable invalid "can't wrap" optimizations for signed / pointers 589KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 590 591# conserve stack if available 592KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) 593 |
594# check for 'asm goto' 595ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y) 596 KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO 597endif 598 |
|
594# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 595# But warn user when we do so 596warn-assign = \ 597$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 598 599ifneq ($(KCPPFLAGS),) 600 $(call warn-assign,CPPFLAGS) 601 KBUILD_CPPFLAGS += $(KCPPFLAGS) --- 918 unchanged lines hidden --- | 599# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 600# But warn user when we do so 601warn-assign = \ 602$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 603 604ifneq ($(KCPPFLAGS),) 605 $(call warn-assign,CPPFLAGS) 606 KBUILD_CPPFLAGS += $(KCPPFLAGS) --- 918 unchanged lines hidden --- |