e062c54f4 Add bazel feature for wasm-exceptions (#1575) d49219d03 Release 4.0.11 (#1572) d845e506c Fix python search path in emsdk launcher scripts (#1571) 62a853cd3 Release 4.0.10 (#1565) 2d480a1b7 Update Node.js to LTS 22.16.0. (#1563) cfe7ccf16 Update python version note for Linux. (#1562) d07c79341 Update Python to 3.13.3 and add support to Windows on ARM64. (#1477) git-subtree-dir: libs/emsdk git-subtree-split: e062c54f436e58ee102d2d37901cdaa052af249a
27 lines
605 B
Python
27 lines
605 B
Python
bazel_dep(name = "rules_cc", version = "0.1.1")
|
|
bazel_dep(name = "emsdk")
|
|
local_path_override(
|
|
module_name = "emsdk",
|
|
path = "..",
|
|
)
|
|
|
|
emscripten_cache = use_extension(
|
|
"@emsdk//:emscripten_cache.bzl",
|
|
"emscripten_cache",
|
|
)
|
|
emscripten_cache.configuration(flags = ["--lto"])
|
|
emscripten_cache.targets(targets = [
|
|
"crtbegin",
|
|
"libprintf_long_double-debug",
|
|
"libstubs-debug",
|
|
"libnoexit",
|
|
"libc-debug",
|
|
"libdlmalloc",
|
|
"libcompiler_rt",
|
|
"libc++-noexcept",
|
|
"libc++-debug-noexcept",
|
|
"libc++abi-debug-noexcept",
|
|
"libsockets",
|
|
"libdlmalloc-debug",
|
|
])
|