We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8915035 commit 27dc96fCopy full SHA for 27dc96f
1 file changed
bench_runner/scripts/workflow.py
@@ -141,6 +141,7 @@ def compile_unix(cpython: PathLike, flags: list[str], pgo: bool, pystats: bool)
141
env["LLVM_PROFDATA"] = util.safe_which("llvm-profdata-19")
142
elif sys.platform == "darwin":
143
llvm_prefix = util.get_brew_prefix("llvm")
144
+ env["PATH"] = f"{llvm_prefix}/bin:{env['PATH']}"
145
env["CC"] = f"{llvm_prefix}/bin/clang"
146
env["LDFLAGS"] = f"-L{llvm_prefix}/lib"
147
env["CFLAGS"] = f"-I{llvm_prefix}/include"
0 commit comments