diff options
author | Zhenzhong Duan <zhenzhong.duan@oracle.com> | 2018-11-02 04:45:41 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-11-28 05:57:03 -0500 |
commit | 4cd24de3a0980bf3100c9dcb08ef65ca7c31af48 (patch) | |
tree | e8358f10ec5689cdda1d7ad33491c607d15766c6 /scripts/Makefile.build | |
parent | 2e6e902d185027f8e3cb8b7305238f7e35d6a436 (diff) |
x86/retpoline: Make CONFIG_RETPOLINE depend on compiler support
Since retpoline capable compilers are widely available, make
CONFIG_RETPOLINE hard depend on the compiler capability.
Break the build when CONFIG_RETPOLINE is enabled and the compiler does not
support it. Emit an error message in that case:
"arch/x86/Makefile:226: *** You are building kernel with non-retpoline
compiler, please update your compiler.. Stop."
[dwmw: Fail the build with non-retpoline compiler]
Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: David Woodhouse <dwmw@amazon.co.uk>
Cc: Borislav Petkov <bp@suse.de>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Michal Marek <michal.lkml@markovi.net>
Cc: <srinivas.eeda@oracle.com>
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/cca0cb20-f9e2-4094-840b-fb0f8810cd34@default
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index a8e7ba9f73e8..6a6be9f440cf 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
@@ -236,10 +236,8 @@ ifdef CONFIG_GCOV_KERNEL | |||
236 | objtool_args += --no-unreachable | 236 | objtool_args += --no-unreachable |
237 | endif | 237 | endif |
238 | ifdef CONFIG_RETPOLINE | 238 | ifdef CONFIG_RETPOLINE |
239 | ifneq ($(RETPOLINE_CFLAGS),) | ||
240 | objtool_args += --retpoline | 239 | objtool_args += --retpoline |
241 | endif | 240 | endif |
242 | endif | ||
243 | 241 | ||
244 | 242 | ||
245 | ifdef CONFIG_MODVERSIONS | 243 | ifdef CONFIG_MODVERSIONS |