From bf854c34a3a0b5389019a8f4c9377d229495fa0c Mon Sep 17 00:00:00 2001 From: Andrei Elovikov Date: Wed, 12 Nov 2025 12:20:30 -0800 Subject: [PATCH] [SYCL RTC] Disable `sycl-jit` on MacOS --- buildbot/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/configure.py b/buildbot/configure.py index 3e9d45fbfe2ad..95a05b54a0e99 100644 --- a/buildbot/configure.py +++ b/buildbot/configure.py @@ -32,7 +32,7 @@ def do_configure(args, passthrough_args): libclc_nvidia_target_names = ";nvptx64--nvidiacl" sycl_enable_jit = "OFF" - if not args.disable_jit: + if not args.disable_jit and sys.platform != "darwin": llvm_external_projects += ";sycl-jit" sycl_enable_jit = "ON"