kbuild: move host .so build rules to scripts/gcc-plugins/Makefile
authorMasahiro Yamada <masahiroy@kernel.org>
Wed, 29 Jul 2020 03:15:36 +0000 (12:15 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sun, 9 Aug 2020 16:32:59 +0000 (01:32 +0900)
commit42640b134bf44e3bac34808e8c39660c7ae42855
tree7219011c52ef2eb6a0da98f279806ecdae2167d6
parent16a122c743b327f714606eff2cd8ff31c206bafc
kbuild: move host .so build rules to scripts/gcc-plugins/Makefile

The host shared library rules are currently implemented in
scripts/Makefile.host, but actually GCC-plugin is the only user of
them. (The VDSO .so files are built for the target by different
build rules) Hence, they do not need to be treewide available.

Move all the relevant build rules to scripts/gcc-plugins/Makefile.

I also optimized the build steps so *.so is directly built from .c
because every upstream plugin is compiled from a single source file.

I am still keeping the multi-file plugin support, which Kees Cook
mentioned might be needed by out-of-tree plugins.
(https://lkml.org/lkml/2019/1/11/1107)

If the plugin, foo.so, is compiled from two files foo.c and foo2.c,
then you can do like follows:

  foo-objs := foo.o foo2.o

Single-file plugins do not need the *-objs notation.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Kees Cook <keescook@chromium.org>
scripts/Makefile.build
scripts/Makefile.clean
scripts/Makefile.host
scripts/gcc-plugins/Makefile