We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21af49b commit 5d5dba1Copy full SHA for 5d5dba1
Tools/wasm/wasi.py
@@ -173,13 +173,6 @@ def wasi_sdk_env(context):
173
env = {"CC": "clang", "CPP": "clang-cpp", "CXX": "clang++",
174
"AR": "llvm-ar", "RANLIB": "ranlib"}
175
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
-
183
for env_var, binary_name in list(env.items()):
184
env[env_var] = os.fsdecode(wasi_sdk_path / "bin" / binary_name)
185
0 commit comments