我怎么知道我安装了哪个版本的 clang?

我怎么知道我安装了哪个版本的 clang?

我怎么知道我安装了哪个版本的 clang?

答案1

clang --version

见下文:

$ clang --version
Ubuntu clang version 3.5-1ubuntu1 (trunk) (based on LLVM 3.5)
Target: x86_64-pc-linux-gnu
Thread model: posix

答案2

我们可能必须先找到它,因为最新版本可能无法安装clang

就我而言,这是最新版本:

$ locate clang
/usr/bin/clang-11
$ clang-11 --version
Ubuntu clang version 11.0.0-++20200916113328+8f2c29681ce-1~exp1~20200916094014.99
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin

相关内容