Skip to content

Commit 5d5dba1

Browse files
committed
wasi wires itself? undo my wiring.
1 parent 21af49b commit 5d5dba1

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Tools/wasm/wasi.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,6 @@ def wasi_sdk_env(context):
173173
env = {"CC": "clang", "CPP": "clang-cpp", "CXX": "clang++",
174174
"AR": "llvm-ar", "RANLIB": "ranlib"}
175175

176-
# sccache available? wire it up!
177-
# used in GHA CI via .github/workflows/reusable-wasi.yaml
178-
if subprocess.call(["sccache", "--version"], stderr=subprocess.DEVNULL) == 0:
179-
env["CC"] = f'sccache {env["CC"]}'
180-
env["CPP"] = f'sccache {env["CPP"]}'
181-
env["CXX"] = f'sccache {env["CXX"]}'
182-
183176
for env_var, binary_name in list(env.items()):
184177
env[env_var] = os.fsdecode(wasi_sdk_path / "bin" / binary_name)
185178

0 commit comments

Comments
 (0)