Blame view

scripts/cc-version.sh 1.51 KB
aec6c60a0   Masahiro Yamada   kbuild: check the...
1
2
3
4
5
6
7
  #!/bin/sh
  # SPDX-License-Identifier: GPL-2.0
  #
  # Print the compiler name and its version in a 5 or 6-digit form.
  # Also, perform the minimum version check.
  
  set -e
aec6c60a0   Masahiro Yamada   kbuild: check the...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  # Print the compiler name and some version components.
  get_compiler_info()
  {
  	cat <<- EOF | "$@" -E -P -x c - 2>/dev/null
  	#if defined(__clang__)
  	Clang	__clang_major__  __clang_minor__  __clang_patchlevel__
  	#elif defined(__INTEL_COMPILER)
  	ICC	__INTEL_COMPILER  __INTEL_COMPILER_UPDATE
  	#elif defined(__GNUC__)
  	GCC	__GNUC__  __GNUC_MINOR__  __GNUC_PATCHLEVEL__
  	#else
  	unknown
  	#endif
  	EOF
  }
  
  # Convert the version string x.y.z to a canonical 5 or 6-digit form.
  get_canonical_version()
  {
  	IFS=.
  	set -- $1
  	echo $((10000 * $1 + 100 * $2 + $3))
  }
  
  # $@ instead of $1 because multiple words might be given, e.g. CC="ccache gcc".
  orig_args="$@"
  set -- $(get_compiler_info "$@")
  
  name=$1
e24b3ffcf   Masahiro Yamada   kbuild: collect m...
37
  min_tool_version=$(dirname $0)/min-tool-version.sh
aec6c60a0   Masahiro Yamada   kbuild: check the...
38
39
40
  case "$name" in
  GCC)
  	version=$2.$3.$4
e24b3ffcf   Masahiro Yamada   kbuild: collect m...
41
  	min_version=$($min_tool_version gcc)
aec6c60a0   Masahiro Yamada   kbuild: check the...
42
43
44
  	;;
  Clang)
  	version=$2.$3.$4
e24b3ffcf   Masahiro Yamada   kbuild: collect m...
45
  	min_version=$($min_tool_version llvm)
aec6c60a0   Masahiro Yamada   kbuild: check the...
46
47
48
  	;;
  ICC)
  	version=$(($2 / 100)).$(($2 % 100)).$3
e24b3ffcf   Masahiro Yamada   kbuild: collect m...
49
  	min_version=$($min_tool_version icc)
aec6c60a0   Masahiro Yamada   kbuild: check the...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  	;;
  *)
  	echo "$orig_args: unknown compiler" >&2
  	exit 1
  	;;
  esac
  
  cversion=$(get_canonical_version $version)
  min_cversion=$(get_canonical_version $min_version)
  
  if [ "$cversion" -lt "$min_cversion" ]; then
  	echo >&2 "***"
  	echo >&2 "*** Compiler is too old."
  	echo >&2 "***   Your $name version:    $version"
  	echo >&2 "***   Minimum $name version: $min_version"
  	echo >&2 "***"
  	exit 1
  fi
  
  echo $name $cversion