parisc: Raise minimal GCC version

64-bit targets need the __int128 type, which for pa-risc means raising
the minimum gcc version to 11.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Helge Deller <deller@gmx.de>
Tested-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lkml.kernel.org/r/20230602143912.GI620383%40hirez.programming.kicks-ass.net
This commit is contained in:
Peter Zijlstra 2023-06-02 16:33:54 +02:00
parent 6d12c8d308
commit 8664645ade

View File

@ -17,7 +17,11 @@ binutils)
echo 2.25.0
;;
gcc)
echo 5.1.0
if [ "$SRCARCH" = parisc ]; then
echo 11.0.0
else
echo 5.1.0
fi
;;
llvm)
if [ "$SRCARCH" = s390 ]; then