diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-19 05:01:24 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-25 13:01:25 -0400 |
commit | aeacb019b61c4ea7689085574bd03d2c0810f119 (patch) | |
tree | 79e90bf5709b0b33592c912a281294b15e04d535 | |
parent | 8cd0e46d3f0ce730a5c7d1e9e75765b24b72013a (diff) |
kbuild: define KBUILD_MODNAME even if multiple modules share objects
Currently, KBUILD_MODNAME is defined only when $(modname) contains
just one word. If an object is shared among multiple modules,
undefined KBUILD_MODNAME could cause a build error. For example,
if CONFIG_DYNAMIC_DEBUG is enabled, any call of printk() populates
.modname, then fails to build due to undefined KBUILD_MODNAME.
Take the following code as an example:
obj-m += foo.o
obj-m += bar.o
foo-objs := foo-bar-common.o foo-only.o
bar-objs := foo-bar-common.o bar-only.o
In this case, there is room for argument what to define for
KBUILD_MODNAME when foo-bar-common.o is being compiled.
"foo", "bar", or what else?
One idea is to define colon-separated modules that share the object,
in this case, "bar:foo" (modules are sorted alphabetically by
$(sort ...)).
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Cao jin <caoj.fnst@cn.fujitsu.com>
-rw-r--r-- | scripts/Makefile.lib | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index ca5b587c9c42..5bdfb740047e 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -87,13 +87,9 @@ subdir-ym := $(addprefix $(obj)/,$(subdir-ym)) | |||
87 | # These flags are needed for modversions and compiling, so we define them here | 87 | # These flags are needed for modversions and compiling, so we define them here |
88 | # $(modname_flags) defines KBUILD_MODNAME as the name of the module it will | 88 | # $(modname_flags) defines KBUILD_MODNAME as the name of the module it will |
89 | # end up in (or would, if it gets compiled in) | 89 | # end up in (or would, if it gets compiled in) |
90 | # Note: Files that end up in two or more modules are compiled without the | ||
91 | # KBUILD_MODNAME definition. The reason is that any made-up name would | ||
92 | # differ in different configs. | ||
93 | name-fix = $(squote)$(quote)$(subst $(comma),_,$(subst -,_,$1))$(quote)$(squote) | 90 | name-fix = $(squote)$(quote)$(subst $(comma),_,$(subst -,_,$1))$(quote)$(squote) |
94 | basename_flags = -DKBUILD_BASENAME=$(call name-fix,$(basetarget)) | 91 | basename_flags = -DKBUILD_BASENAME=$(call name-fix,$(basetarget)) |
95 | modname_flags = $(if $(filter 1,$(words $(modname))),\ | 92 | modname_flags = -DKBUILD_MODNAME=$(call name-fix,$(modname)) |
96 | -DKBUILD_MODNAME=$(call name-fix,$(modname))) | ||
97 | 93 | ||
98 | orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \ | 94 | orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \ |
99 | $(ccflags-y) $(CFLAGS_$(basetarget).o) | 95 | $(ccflags-y) $(CFLAGS_$(basetarget).o) |
@@ -174,8 +170,10 @@ dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ | |||
174 | -undef -D__DTS__ | 170 | -undef -D__DTS__ |
175 | 171 | ||
176 | # Finds the multi-part object the current object will be linked into | 172 | # Finds the multi-part object the current object will be linked into |
177 | modname-multi = $(sort $(foreach m,$(multi-used),\ | 173 | # If the object belongs to two or more multi-part objects, all of them are |
178 | $(if $(filter $*.o, $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=)))) | 174 | # concatenated with a colon separator. |
175 | modname-multi = $(subst $(space),:,$(sort $(foreach m,$(multi-used),\ | ||
176 | $(if $(filter $*.o, $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))) | ||
179 | 177 | ||
180 | # Useful for describing the dependency of composite objects | 178 | # Useful for describing the dependency of composite objects |
181 | # Usage: | 179 | # Usage: |