diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | scripts/Makefile.lib | 15 |
2 files changed, 11 insertions, 8 deletions
| @@ -336,7 +336,7 @@ LINUXINCLUDE := -Iinclude \ | |||
| 336 | -I$(srctree)/arch/$(hdr-arch)/include \ | 336 | -I$(srctree)/arch/$(hdr-arch)/include \ |
| 337 | -include include/linux/autoconf.h | 337 | -include include/linux/autoconf.h |
| 338 | 338 | ||
| 339 | KBUILD_CPPFLAGS := -D__KERNEL__ $(LINUXINCLUDE) | 339 | KBUILD_CPPFLAGS := -D__KERNEL__ |
| 340 | 340 | ||
| 341 | KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ | 341 | KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ |
| 342 | -fno-strict-aliasing -fno-common \ | 342 | -fno-strict-aliasing -fno-common \ |
| @@ -1638,7 +1638,7 @@ cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \ | |||
| 1638 | $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*) | 1638 | $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*) |
| 1639 | 1639 | ||
| 1640 | a_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \ | 1640 | a_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \ |
| 1641 | $(NOSTDINC_FLAGS) $(KBUILD_CPPFLAGS) \ | 1641 | $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CPPFLAGS) \ |
| 1642 | $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o) | 1642 | $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o) |
| 1643 | 1643 | ||
| 1644 | quiet_cmd_as_o_S = AS $@ | 1644 | quiet_cmd_as_o_S = AS $@ |
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index b4ca38a21158..e06365775bdf 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
| @@ -104,9 +104,11 @@ else | |||
| 104 | debug_flags = | 104 | debug_flags = |
| 105 | endif | 105 | endif |
| 106 | 106 | ||
| 107 | orig_c_flags = $(KBUILD_CFLAGS) $(ccflags-y) $(CFLAGS_$(basetarget).o) | 107 | orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \ |
| 108 | $(ccflags-y) $(CFLAGS_$(basetarget).o) | ||
| 108 | _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags)) | 109 | _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags)) |
| 109 | _a_flags = $(KBUILD_AFLAGS) $(asflags-y) $(AFLAGS_$(basetarget).o) | 110 | _a_flags = $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) \ |
| 111 | $(asflags-y) $(AFLAGS_$(basetarget).o) | ||
| 110 | _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F)) | 112 | _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F)) |
| 111 | 113 | ||
| 112 | # If building the kernel in a separate objtree expand all occurrences | 114 | # If building the kernel in a separate objtree expand all occurrences |
| @@ -127,15 +129,16 @@ __a_flags = $(call flags,_a_flags) | |||
| 127 | __cpp_flags = $(call flags,_cpp_flags) | 129 | __cpp_flags = $(call flags,_cpp_flags) |
| 128 | endif | 130 | endif |
| 129 | 131 | ||
| 130 | c_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(KBUILD_CPPFLAGS) \ | 132 | c_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
| 131 | $(__c_flags) $(modkern_cflags) \ | 133 | $(__c_flags) $(modkern_cflags) \ |
| 132 | -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) \ | 134 | -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) \ |
| 133 | $(debug_flags) | 135 | $(debug_flags) |
| 134 | 136 | ||
| 135 | a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(KBUILD_CPPFLAGS) \ | 137 | a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
| 136 | $(__a_flags) $(modkern_aflags) | 138 | $(__a_flags) $(modkern_aflags) |
| 137 | 139 | ||
| 138 | cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(__cpp_flags) | 140 | cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
| 141 | $(__cpp_flags) | ||
| 139 | 142 | ||
| 140 | ld_flags = $(LDFLAGS) $(ldflags-y) | 143 | ld_flags = $(LDFLAGS) $(ldflags-y) |
| 141 | 144 | ||
