@@ -64,6 +64,7 @@ def do_configure(args):
64
64
65
65
sycl_enable_xpti_tracing = "ON"
66
66
xpti_enable_werror = "OFF"
67
+ llvm_enable_zstd = "OFF"
67
68
68
69
if sys .platform != "darwin" :
69
70
sycl_enabled_backends .append ("level_zero" )
@@ -133,6 +134,8 @@ def do_configure(args):
133
134
134
135
# For clang-format, clang-tidy and code coverage
135
136
llvm_enable_projects += ";clang-tools-extra;compiler-rt"
137
+ # Build with zstd enabled on CI.
138
+ llvm_enable_zstd = "ON"
136
139
if sys .platform != "darwin" :
137
140
# libclc is required for CI validation
138
141
libclc_enabled = True
@@ -177,7 +180,7 @@ def do_configure(args):
177
180
"-DLLVM_ENABLE_PROJECTS={}" .format (llvm_enable_projects ),
178
181
"-DSYCL_BUILD_PI_HIP_PLATFORM={}" .format (sycl_build_pi_hip_platform ),
179
182
"-DLLVM_BUILD_TOOLS=ON" ,
180
- "-DLLVM_ENABLE_ZSTD=ON" ,
183
+ "-DLLVM_ENABLE_ZSTD={}" . format ( llvm_enable_zstd ) ,
181
184
"-DLLVM_USE_STATIC_ZSTD=ON" ,
182
185
"-DSYCL_ENABLE_WERROR={}" .format (sycl_werror ),
183
186
"-DCMAKE_INSTALL_PREFIX={}" .format (install_dir ),
0 commit comments