]> git.ipfire.org Git - people/ms/linux.git/blame - scripts/min-tool-version.sh
Merge branch 'sunplus/newsoc' into arm/newsoc
[people/ms/linux.git] / scripts / min-tool-version.sh
CommitLineData
e24b3ffc
MY
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0-only
3#
4# Print the minimum supported version of the given tool.
5# When you raise the minimum version, please update
6# Documentation/process/changes.rst as well.
7
8set -e
9
10if [ $# != 1 ]; then
11 echo "Usage: $0 toolname" >&2
12 exit 1
13fi
14
15case "$1" in
16binutils)
17 echo 2.23.0
18 ;;
19gcc)
76ae8474 20 echo 5.1.0
e24b3ffc
MY
21 ;;
22icc)
23 # temporary
24 echo 16.0.3
25 ;;
26llvm)
e2bc3e91 27 if [ "$SRCARCH" = s390 ]; then
8218827b 28 echo 14.0.0
e2bc3e91 29 else
df05c0e9 30 echo 11.0.0
e2bc3e91 31 fi
e24b3ffc
MY
32 ;;
33*)
34 echo "$1: unknown tool" >&2
35 exit 1
36 ;;
37esac