diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 3 insertions, 16 deletions
@@ -648,22 +648,9 @@ ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y) | |||
648 | endif | 648 | endif |
649 | 649 | ||
650 | # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments | 650 | # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments |
651 | # But warn user when we do so | 651 | KBUILD_CPPFLAGS += $(KCPPFLAGS) |
652 | warn-assign = \ | 652 | KBUILD_AFLAGS += $(KAFLAGS) |
653 | $(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") | 653 | KBUILD_CFLAGS += $(KCFLAGS) |
654 | |||
655 | ifneq ($(KCPPFLAGS),) | ||
656 | $(call warn-assign,CPPFLAGS) | ||
657 | KBUILD_CPPFLAGS += $(KCPPFLAGS) | ||
658 | endif | ||
659 | ifneq ($(KAFLAGS),) | ||
660 | $(call warn-assign,AFLAGS) | ||
661 | KBUILD_AFLAGS += $(KAFLAGS) | ||
662 | endif | ||
663 | ifneq ($(KCFLAGS),) | ||
664 | $(call warn-assign,CFLAGS) | ||
665 | KBUILD_CFLAGS += $(KCFLAGS) | ||
666 | endif | ||
667 | 654 | ||
668 | # Use --build-id when available. | 655 | # Use --build-id when available. |
669 | LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ | 656 | LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ |