1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/env dotslash
// The emscripten C -> WebAssembly compiler, pinned by content hash.
//
// Nothing is installed: DotSlash fetches this on first use and caches it under
// ~/.cache/dotslash. Version 6.0.9, resolved via emsdk's
// emscripten-releases-tags.json to the build hash in the URLs below.
//
// Regenerate an entry with:
// dotslash -- create-url-entry <url>
{
"name": "emcc",
"platforms": {
"linux-x86_64": {
"size": 298541944,
"hash": "blake3",
"digest": "59405b7a7d7c02798b68e616f8e0f9ededcbec4dbe868cebf63a92ff533d252b",
"format": "tar.xz",
"path": "install/emscripten/emcc",
"providers": [
{
"url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/f04ea239d533260dd1db760dd2d668d5f9a88d6b/wasm-binaries.tar.xz"
}
]
}
}
}
|