Skip to content

Commit b312f04

Browse files
[SYCL RTC] Disable sycl-jit on MacOS (#20625)
Fixes post-commit build failure on MacOS after #20599.
1 parent cb37939 commit b312f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildbot/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def do_configure(args, passthrough_args):
3232
libclc_nvidia_target_names = ";nvptx64--nvidiacl"
3333

3434
sycl_enable_jit = "OFF"
35-
if not args.disable_jit:
35+
if not args.disable_jit and sys.platform != "darwin":
3636
llvm_external_projects += ";sycl-jit"
3737
sycl_enable_jit = "ON"
3838

0 commit comments

Comments
 (0)