On Thu, Jan 30, 2020 at 3:09 AM Gregory Rose <gvrose8192@xxxxxxxxx> wrote:
On 1/28/2020 7:37 AM, Gregory Rose wrote:
On 1/27/2020 7:35 PM, Masahiro Yamada wrote:Hi Masahiro,
On Tue, Jan 28, 2020 at 6:50 AM Greg Rose <gvrose8192@xxxxxxxxx> wrote:
Since this commit:ccflags-y is passed only for compiling C files in that directory.
'commit 9b9a3f20cbe0 ("kbuild: split final module linking out into
Makefile.modfinal")'
at least one out-of-tree external kernel module build fails
during the modfinal make phase because Makefile.modfinal does
not include the ccflags-y variable from the exernal module's Kbuild.
It is not used for compiling *.mod.c
This is true for both in-kernel and external modules.
So, ccflags-y is not a good choice
for passing such flags that should be globally effective.
Maybe, KCFLAGS should work.
module:
$(MAKE) KCFLAGS=... M=$(PWD) -C /lib/modules/$(uname
-r)/build modules
I'm unable to get that to work. KCFLAGS does not seem to be used in
Makefile.modfinal.
I quickly tested it, and confirmed
KCFLAGS works for external modules, too.
Makefile.modfinal includes scripts/Makefile.lib
So, c_flags contains $(KCFLAGS)
c_flags -> KBUILD_CFLAGS -> KCFLAGS