From 13c80bdb107e3097fa9bc77304eb0a3f59a670ea Mon Sep 17 00:00:00 2001 From: yiguolei <676222867@qq.com> Date: Sun, 28 May 2023 21:05:23 +0800 Subject: [PATCH] [chore](toolchain) change doris default toolchain to clang (#20146) GCC is very slow during build and link. Change to clang as we discussed many times. Co-authored-by: yiguolei --- env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.sh b/env.sh index e300a6b432..76fa34681d 100755 --- a/env.sh +++ b/env.sh @@ -110,7 +110,7 @@ if [[ -z "${DORIS_TOOLCHAIN}" ]]; then if [[ "$(uname -s)" == 'Darwin' ]]; then DORIS_TOOLCHAIN=clang else - DORIS_TOOLCHAIN=gcc + DORIS_TOOLCHAIN=clang fi fi