blob: 2170598198c5a1363609f0b1238ecef76941d993 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- default cache location to ~/.cache/emscripten
-- see also https://github.com/emscripten-core/emscripten/issues/23284
--- tools/config.py.orig 2025-01-02 23:51:05 UTC
+++ tools/config.py
@@ -33,7 +33,7 @@ FROZEN_CACHE = None
WASMTIME = None
WASM_ENGINES: List[List[str]] = []
FROZEN_CACHE = None
-CACHE = None
+CACHE = f"{os.environ['HOME']}/.cache/emscripten"
PORTS = None
COMPILER_WRAPPER = None
|