diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-05 10:28:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-05 10:28:38 -0700 |
commit | 2a95b03d4cf780611ac6903fddc79e6d9789966e (patch) | |
tree | f8c45c7dcd46111f79774bb78a7cd6971c75a754 /scripts | |
parent | 6cd06ab12d1afdab3847e7981f301bd0404aaa5c (diff) | |
parent | f8a473bf5db7a6abaa7cad40303e395dff702819 (diff) |
Merge tag 'parisc-for-6.5-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Pull more parisc architecture updates from Helge Deller:
- Fix all compiler warnings in arch/parisc and drivers/parisc when
compiled with W=1
* tag 'parisc-for-6.5-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux:
parisc: syscalls: Avoid compiler warnings with W=1
parisc: math-emu: Avoid compiler warnings with W=1
parisc: Raise minimal GCC version to 12.0.0
parisc: unwind: Avoid missing prototype warning for handle_interruption()
parisc: smp: Add declaration for start_cpu_itimer()
parisc: pdt: Get prototype for arch_report_meminfo()
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/min-tool-version.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/min-tool-version.sh b/scripts/min-tool-version.sh index dfd186372f63..2ade63149466 100755 --- a/scripts/min-tool-version.sh +++ b/scripts/min-tool-version.sh @@ -17,8 +17,8 @@ binutils) echo 2.25.0 ;; gcc) - if [ "$SRCARCH" = parisc ]; then - echo 11.0.0 + if [ "$ARCH" = parisc64 ]; then + echo 12.0.0 else echo 5.1.0 fi |