Commit c9dfa0c7 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Helge Deller
Browse files

parisc: remove check for minimum required GCC version



Commit cafa0010 ("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: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent cd2b8520
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -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