aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-11-11 21:35:19 -0500
committerBorislav Petkov <bp@suse.de>2018-12-09 05:51:11 -0500
commit829889ac4a7d26858860c297e64051bd27ce8fbe (patch)
tree720a015aa96264f426d69a9d8b7da06a7a90c62e
parent2595646791c319cadfdbf271563aac97d0843dc7 (diff)
x86/um: Remove -fno-unit-at-a-time workaround for pre-4.0 GCC
Commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6") bumped the minimum GCC version to 4.6 for all architectures. '$(call cc-option,-fno-unit-at-a-time)' is now dead code since '$(cc-version) -lt 0400' is always false. Remove it. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Borislav Petkov <bp@suse.de> Acked-by: Richard Weinberger <richard@nod.at> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linuxppc-dev@lists.ozlabs.org Cc: x86-ml <x86@kernel.org> Link: https://lkml.kernel.org/r/1541990120-9643-2-git-send-email-yamada.masahiro@socionext.com
-rw-r--r--arch/x86/Makefile.um8
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/x86/Makefile.um b/arch/x86/Makefile.um
index 91085a08de6c..577976b7d1f8 100644
--- a/arch/x86/Makefile.um
+++ b/arch/x86/Makefile.um
@@ -26,12 +26,8 @@ cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
26# an unresolved reference. 26# an unresolved reference.
27cflags-y += -ffreestanding 27cflags-y += -ffreestanding
28 28
29# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use 29# gcc 4.3.0 needs -funit-at-a-time for extern inline functions.
30# a lot more stack due to the lack of sharing of stacklots. Also, gcc 30KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
31# 4.3.0 needs -funit-at-a-time for extern inline functions.
32KBUILD_CFLAGS += $(shell if [ $(cc-version) -lt 0400 ] ; then \
33 echo $(call cc-option,-fno-unit-at-a-time); \
34 else echo $(call cc-option,-funit-at-a-time); fi ;)
35 31
36KBUILD_CFLAGS += $(cflags-y) 32KBUILD_CFLAGS += $(cflags-y)
37 33