diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -528,9 +528,22 @@ KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) | |||
528 | KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) | 528 | KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) |
529 | 529 | ||
530 | # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments | 530 | # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments |
531 | KBUILD_CPPFLAGS += $(CPPFLAGS) | 531 | # But warn user when we do so |
532 | KBUILD_AFLAGS += $(AFLAGS) | 532 | warn-assign = \ |
533 | KBUILD_CFLAGS += $(CFLAGS) | 533 | $(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") |
534 | |||
535 | ifneq ($(KCPPFLAGS),) | ||
536 | $(call warn-assign,CPPFLAGS) | ||
537 | KBUILD_CPPFLAGS += $(KCPPFLAGS) | ||
538 | endif | ||
539 | ifneq ($(KAFLAGS),) | ||
540 | $(call warn-assign,AFLAGS) | ||
541 | KBUILD_AFLAGS += $(KAFLAGS) | ||
542 | endif | ||
543 | ifneq ($(KCFLAGS),) | ||
544 | $(call warn-assign,CFLAGS) | ||
545 | KBUILD_CFLAGS += $(KCFLAGS) | ||
546 | endif | ||
534 | 547 | ||
535 | # Use --build-id when available. | 548 | # Use --build-id when available. |
536 | LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ | 549 | LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ |