|
Message-ID: <119189.1517763703@turing-police.cc.vt.edu> Date: Sun, 04 Feb 2018 12:01:43 -0500 From: valdis.kletnieks@...edu To: Kees Cook <keescook@...omium.org>, kernel-hardening@...ts.openwall.com cc: linux-kernel@...r.kernel.org Subject: [PATCH 1/2] GCC release 8 support for gcc-plugins GCC requires another #include to get the gcc-plugins to build cleanly. Signed-off-by: Valdis Kletnieks <valdis.kletnieks@...edu> diff --git a/scripts/gcc-plugins/gcc-common.h b/scripts/gcc-plugins/gcc-common.h index ffd1dfaa1cc1..f46750053377 100644 --- a/scripts/gcc-plugins/gcc-common.h +++ b/scripts/gcc-plugins/gcc-common.h @@ -97,6 +97,10 @@ #include "predict.h" #include "ipa-utils.h" +#if BUILDING_GCC_VERSION >= 8000 +#include "stringpool.h" +#endif + #if BUILDING_GCC_VERSION >= 4009 #include "attribs.h" #include "varasm.h"
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.