mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	 8218827b73
			
		
	
	
		8218827b73
		
	
	
	
	
		
			
			Before version 14.0.0 llvm's integrated assembler fails to handle some displacement variants: arch/s390/purgatory/head.S:108:10: error: invalid operand for instruction lg %r11,kernel_type-.base_crash(%r13) Instead of working around this and given that this is already fixed raise the minimum clang version from 13.0.0 to 14.0.0. Acked-by: Nick Desaulniers <ndesaulniers@google.com> Tested-by: Nathan Chancellor <nathan@kernel.org> Tested-by: Nick Desaulniers <ndesaulniers@google.com> Link: https://reviews.llvm.org/D113341 Link: https://lore.kernel.org/r/20220511120532.2228616-9-hca@linux.ibm.com Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| #
 | |
| # Print the minimum supported version of the given tool.
 | |
| # When you raise the minimum version, please update
 | |
| # Documentation/process/changes.rst as well.
 | |
| 
 | |
| set -e
 | |
| 
 | |
| if [ $# != 1 ]; then
 | |
| 	echo "Usage: $0 toolname" >&2
 | |
| 	exit 1
 | |
| fi
 | |
| 
 | |
| case "$1" in
 | |
| binutils)
 | |
| 	echo 2.23.0
 | |
| 	;;
 | |
| gcc)
 | |
| 	echo 5.1.0
 | |
| 	;;
 | |
| icc)
 | |
| 	# temporary
 | |
| 	echo 16.0.3
 | |
| 	;;
 | |
| llvm)
 | |
| 	if [ "$SRCARCH" = s390 ]; then
 | |
| 		echo 14.0.0
 | |
| 	else
 | |
| 		echo 11.0.0
 | |
| 	fi
 | |
| 	;;
 | |
| *)
 | |
| 	echo "$1: unknown tool" >&2
 | |
| 	exit 1
 | |
| 	;;
 | |
| esac
 |