|
Message-Id: <20160207222721.e0087a07fa604b5dac79a109@gmail.com> Date: Sun, 7 Feb 2016 22:27:21 +0100 From: Emese Revfy <re.emese@...il.com> To: linux-kbuild@...r.kernel.org Cc: pageexec@...email.hu, spender@...ecurity.net, kernel-hardening@...ts.openwall.com, mmarek@...e.com, keescook@...omium.org Subject: [PATCH 0/3] Introduce GCC plugin infrastructure This patch set introduce the GCC plugin infrastructure with examples for testing and documentation. GCC plugins are loadable modules that provide extra features to the compiler. They are useful for runtime instrumentation and static analysis. The infrastructure supports all gcc versions from 4.5 to 6.0, building out-of-tree modules and building in a separate directory. Cross-compilation is supported too but currently only the x86 architecture enables plugins. This infrastructure was ported from grsecurity/PaX. It is a CII project supported by the Linux Foundation. Emese Revfy (3): GCC plugin infrastructure Add Cyclomatic complexity plugin Documentations of the GCC plugin infrastructre --- Documentation/dontdiff | 1 + Documentation/example_gcc_plugin.c | 103 +++++ Documentation/gcc-plugins.txt | 76 ++++ Makefile | 70 +++- arch/Kconfig | 26 ++ arch/x86/Kconfig | 1 + init/Makefile | 3 + scripts/Makefile.build | 2 +- scripts/Makefile.clean | 3 +- scripts/Makefile.host | 69 +++- scripts/gcc-plugin.sh | 51 +++ scripts/link-vmlinux.sh | 2 +- scripts/package/builddeb | 1 + tools/gcc/Makefile | 19 + tools/gcc/cyc_complexity_plugin.c | 120 ++++++ tools/gcc/gcc-common.h | 794 +++++++++++++++++++++++++++++++++++++ 16 files changed, 1326 insertions(+), 15 deletions(-)
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.