使用仪表板设置编译 AzerothCore 时如何更改 clang verion

How to change the clang verion when compiling AzerothCore with dashboard setup

我正在尝试在 Debian 上编译 AzerothCore using the dashboard setup,所以我通常编译:

./acore.sh compiler build

但是,我的默认 clang 版本是 7,它不再适用于 AzerothCore,因为我需要 clang-10 或更高版本。

所以我安装了 clang-11 和以下工作:

clang-11 --version

但是当我尝试编译时,它仍然使用 clang 7 并且失败了。

如何在编译 AzerothCore 时更改 clang 版本?

打开 conf/config.sh 文件(如果没有,将其从 conf/dist/config.sh 复制到 conf/config.sh)并更改:

CCOMPILERC="/usr/bin/clang"
CCOMPILERCXX="/usr/bin/clang++"

与:

CCOMPILERC="/usr/bin/clang-11"
CCOMPILERCXX="/usr/bin/clang++-11"