printf: Remove unused 'bprintf'
[drm/drm-misc.git] / scripts / rustc-llvm-version.sh
bloba500d1ae310154e2670ee40c08314bcf8c9e0595
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
4 # Usage: $ ./rustc-llvm-version.sh rustc
6 # Print the LLVM version that the Rust compiler uses in a 6 digit form.
8 # Convert the version string x.y.z to a canonical up-to-6-digits form.
9 get_canonical_version()
11 IFS=.
12 set -- $1
13 echo $((10000 * $1 + 100 * $2 + $3))
16 if output=$("$@" --version --verbose 2>/dev/null | grep -E 'LLVM.*[0-9]+\.[0-9]+\.[0-9]+'); then
17 set -- $output
18 get_canonical_version $3
19 else
20 echo 0
21 exit 1