]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
parisc: remove check for minimum required GCC version
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 27 Aug 2018 02:28:08 +0000 (11:28 +0900)
committerHelge Deller <deller@gmx.de>
Wed, 17 Oct 2018 06:18:00 +0000 (08:18 +0200)
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>
arch/parisc/Makefile

index 5ce030266e7d03bbfd7da5885471b1a874eefcd7..d047a09d660f003de3b3059984de4d9974ae646d 100644 (file)
@@ -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