diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-27 11:28:08 +0900 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-10-17 08:18:00 +0200 |
commit | c9dfa0c796f2c21255c45fe85a72657a192e1a49 (patch) | |
tree | a90a017ee7b61c484a6d138e30ee7edc929e7c08 /arch/parisc | |
parent | cd2b8520681a57dec6986f5ba62b2b23e831b98c (diff) | |
download | linux-c9dfa0c796f2c21255c45fe85a72657a192e1a49.tar.bz2 |
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')
-rw-r--r-- | arch/parisc/Makefile | 9 |
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 |