From: Masahiro Yamada Date: Mon, 27 Aug 2018 02:28:08 +0000 (+0900) Subject: parisc: remove check for minimum required GCC version X-Git-Tag: Ubuntu-5.2.0-15.16~3350^2~21 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=c9dfa0c796f2c21255c45fe85a72657a192e1a49;p=mirror_ubuntu-eoan-kernel.git 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 Signed-off-by: Helge Deller --- 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