~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/cc-version.sh

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php