Skip to content

Commit 06c9e51

Browse files
committed
Expect tools in <toolsdir>/bin
1 parent b90f60b commit 06c9e51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_llvm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def _find_tool(
8080
) -> str | None:
8181
# Explicitly defined LLVM installation location
8282
if llvm_tools_install_dir:
83-
path = os.path.join(llvm_tools_install_dir, tool)
83+
path = os.path.join(llvm_tools_install_dir, "bin", tool)
8484
if await _check_tool_version(path, llvm_version, echo=echo):
8585
return path
8686
# Unversioned executables:

0 commit comments

Comments
 (0)