Makefile: remove m68k GCC 3.4 workaround
authorMasahiro Yamada <masahiroy@kernel.org>
Thu, 14 May 2020 02:38:20 +0000 (11:38 +0900)
committerTom Rini <trini@konsulko.com>
Fri, 15 May 2020 18:47:35 +0000 (14:47 -0400)
This code dates back to 2006, commit 483a0cf804df ("Fixes for gcc 3.4
based m68k toolchain,").

GCC 3.4 is so old. We do not support it.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Makefile

index a9d58ca7a0dceb20a8ee8200bf1a4ff1cb25eb36..97fd492bc0592b019502bdb119ed51ec9db93c5c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -722,13 +722,6 @@ else
 KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
 endif
 
-# turn jbsr into jsr for m68k
-ifeq ($(ARCH),m68k)
-ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
-KBUILD_AFLAGS += -Wa,-gstabs,-S
-endif
-endif
-
 # Prohibit date/time macros, which would make the build non-deterministic
 KBUILD_CFLAGS   += $(call cc-option,-Werror=date-time)