1 #!/bin/sh 2 # SPDX-License-Identifier: GPL-2.0 3 # 4 # Usage: $ ./rustc-llvm-version.sh rustc 5 # 6 # Print the LLVM version that the Rust compile 7 8 # Convert the version string x.y.z to a canoni 9 get_canonical_version() 10 { 11 IFS=. 12 set -- $1 13 echo $((10000 * $1 + 100 * $2 + $3)) 14 } 15 16 if output=$("$@" --version --verbose 2>/dev/nu 17 set -- $output 18 get_canonical_version $3 19 else 20 echo 0 21 exit 1 22 fi
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.