aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-08-27 11:28:08 +0900
committerHelge Deller <deller@gmx.de>2018-10-17 08:18:00 +0200
commitc9dfa0c796f2c21255c45fe85a72657a192e1a49 (patch)
treea90a017ee7b61c484a6d138e30ee7edc929e7c08 /arch/parisc/Makefile
parentparisc: Use PARISC_ITLB_TRAP constant in entry.S (diff)
downloadlinux-dev-c9dfa0c796f2c21255c45fe85a72657a192e1a49.tar.xz
linux-dev-c9dfa0c796f2c21255c45fe85a72657a192e1a49.zip
parisc: remove check for minimum required GCC version
Commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6") bumped the minimum GCC version to 4.6 for all architectures. The version check in arch/parisc/Makefile is obsolete now. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/Makefile')
-rw-r--r--arch/parisc/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile
index 5ce030266e7d..d047a09d660f 100644
--- a/arch/parisc/Makefile
+++ b/arch/parisc/Makefile
@@ -156,12 +156,3 @@ define archhelp
@echo ' copy to $$(INSTALL_PATH)'
@echo ' zinstall - Install compressed vmlinuz kernel'
endef
-
-# we require gcc 3.3 or above to compile the kernel
-archprepare: checkbin
-checkbin:
- @if test "$(cc-version)" -lt "0303"; then \
- echo -n "Sorry, GCC v3.3 or above is required to build " ; \
- echo "the kernel." ; \
- false ; \
- fi