Skip to content
This repository was archived by the owner on Jul 22, 2026. It is now read-only.

Commit ab6426b

Browse files
committed
Use absolute TBB path for Windows OpenCL
1 parent 00b4d78 commit ab6426b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/ci/sycl_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ def configure_windows_opencl_tbb() -> None:
2222
if not config_path.exists():
2323
return
2424

25-
tbb_dll = find_file([Path("build")], "tbb12.dll")
25+
tbb_dll = find_file([Path("build").resolve()], "tbb12.dll")
2626
if tbb_dll is None:
2727
return
2828

29-
tbb_dir = str(tbb_dll.parent)
29+
tbb_dir = str(tbb_dll.parent.resolve())
3030
existing_lines = config_path.read_text(encoding="utf-8").splitlines()
3131
updated_lines: list[str] = []
3232
updated = False

0 commit comments

Comments
 (0)