From 4d55ef786f7e3dafcdd749639b8e32f3bc49b4e3 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Mon, 15 Jan 2024 14:34:49 -0600 Subject: [PATCH] Use clang to build vast --- vast/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vast/build.sh b/vast/build.sh index d55272f..d45239c 100755 --- a/vast/build.sh +++ b/vast/build.sh @@ -39,7 +39,7 @@ git clone -q --depth 1 --recursive --single-branch -b "${BRANCH}" "${URL}" "vast cd "vast-${VERSION}" -cmake --preset ninja-multi-default \ +env CC=/usr/bin/clang-17 CXX=/usr/bin/clang++-17 --preset ninja-multi-default \ --toolchain ./cmake/lld.toolchain.cmake \ --install-prefix "${STAGING_DIR}" \ -DLLVM_EXTERNAL_LIT=/usr/local/bin/lit \