From 4ff8e7ba8fa3f409b9f73b7225f9d1f3cd1fb8e1 Mon Sep 17 00:00:00 2001 From: Wentao Zhang Date: Sat, 8 Jun 2024 16:27:04 -0500 Subject: [PATCH] build-llvm.sh: switch to release build without debug info --- scripts/build-llvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-llvm.sh b/scripts/build-llvm.sh index 536459a..c4ad950 100755 --- a/scripts/build-llvm.sh +++ b/scripts/build-llvm.sh @@ -2,7 +2,7 @@ mkdir -p build cd build -cmake -GNinja -DCMAKE_BUILD_TYPE="RelWithDebInfo" \ +cmake -GNinja -DCMAKE_BUILD_TYPE="Release" \ -DCMAKE_C_FLAGS="-pipe" \ -DCMAKE_CXX_FLAGS="-pipe" \ -DCMAKE_C_COMPILER="gcc" \