You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ !("$(lsb_release -cs)" =~ ^(bionic|focal)$) ]];then
21
-
echo -e "\033[0;33mWarning: You don't seem to be running Ubuntu 18.04 or 20.04, which is the supported Linux distribution. Continuing anyway, but your mileage might vary.\033[0m"
22
-
fi
23
-
24
-
if which clang-9 1>/dev/null;then
25
-
# We follow the symlink of clang-9 here to avoid a bug with the LLVM package when combined with -no-canonical-prefixes.
26
-
export CC="$(readlink -f "$(which clang-9)")"
18
+
if which clang-10 1>/dev/null;then
19
+
# We follow the symlink of clang-10 here to avoid a bug with the LLVM package when combined with -no-canonical-prefixes.
20
+
export CC="$(readlink -f "$(which clang-10)")"
27
21
else
28
22
echo -e "\033[0;33mWarning: You don't seem to have clang-9 correctly installed. Please check README.md to ensure your compiler is set up correctly. Continuing with whatever compiler bazel detects, your mileage might vary.\033[0m"
0 commit comments