This commit is contained in:
Sam Clegg 2023-10-09 19:57:37 -07:00 коммит произвёл GitHub
Родитель 717174835a
Коммит 37b85e9eae
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 18 добавлений и 9 удалений

Просмотреть файл

@ -121,41 +121,41 @@ def emscripten_deps(emscripten_version = "latest"):
http_archive(
name = "emscripten_bin_linux",
strip_prefix = "install",
url = emscripten_url.format("linux", revision.hash, "", "tbz2"),
url = emscripten_url.format("linux", revision.hash, "", "tar.xz"),
sha256 = revision.sha_linux,
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
type = "tar.bz2",
type = "tar.xz",
)
if "emscripten_bin_linux_arm64" not in excludes:
http_archive(
name = "emscripten_bin_linux_arm64",
strip_prefix = "install",
url = emscripten_url.format("linux", revision.hash, "-arm64", "tbz2"),
url = emscripten_url.format("linux", revision.hash, "-arm64", "tar.xz"),
# Not all versions have a linux/arm64 release: https://github.com/emscripten-core/emsdk/issues/547
sha256 = getattr(revision, "sha_linux_arm64", None),
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
type = "tar.bz2",
type = "tar.xz",
)
if "emscripten_bin_mac" not in excludes:
http_archive(
name = "emscripten_bin_mac",
strip_prefix = "install",
url = emscripten_url.format("mac", revision.hash, "", "tbz2"),
url = emscripten_url.format("mac", revision.hash, "", "tar.xz"),
sha256 = revision.sha_mac,
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
type = "tar.bz2",
type = "tar.xz",
)
if "emscripten_bin_mac_arm64" not in excludes:
http_archive(
name = "emscripten_bin_mac_arm64",
strip_prefix = "install",
url = emscripten_url.format("mac", revision.hash, "-arm64", "tbz2"),
url = emscripten_url.format("mac", revision.hash, "-arm64", "tar.xz"),
sha256 = revision.sha_mac_arm64,
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
type = "tar.bz2",
type = "tar.xz",
)
if "emscripten_bin_win" not in excludes:

Просмотреть файл

@ -2,6 +2,13 @@
# DO NOT MODIFY
EMSCRIPTEN_TAGS = {
"3.1.47": struct(
hash = "39ade279e75e6d17dd6b7eb9fba2006e61fe966b",
sha_linux = "bdc50abe5c7d4b4f14acea4ec36b270e86770cea2da4b0c393b80a692dc7eb7a",
sha_mac = "6a3a116707037d75a967a7d971894d8ace74a2a230aa50ba55e88e7cd7b94953",
sha_mac_arm64 = "b13d228e6a1c89c13a1500fff07dcf093fb01fa621d458496d4a6d7f05cfd600",
sha_win = "66a6c4f0cda4ace14a86d3e59d20685d35211854d21670632b0566ac73638245",
),
"3.1.46": struct(
hash = "21644188d5c473e92f1d7df2f9f60c758a78a486",
sha_linux = "75cbf14629b06e417b597d3f897ad7d881c53762380aca2f0dd85f1b15891511",

Просмотреть файл

@ -1,6 +1,6 @@
{
"aliases": {
"latest": "3.1.46",
"latest": "3.1.47",
"latest-sdk": "latest",
"latest-arm64-linux": "3.1.45",
"latest-64bit": "latest",
@ -10,6 +10,8 @@
"latest-releases-upstream": "latest"
},
"releases": {
"3.1.47": "39ade279e75e6d17dd6b7eb9fba2006e61fe966b",
"3.1.47-asserts": "dc49d84ed226a5a30a5117cefc07c781f6c0d16e",
"3.1.46": "21644188d5c473e92f1d7df2f9f60c758a78a486",
"3.1.46-asserts": "3e09b252d0d5a8e045d2ca92c606bfb9874bddf8",
"3.1.45": "2b7c5fb8ffeac3315deb1f82ab7bf8da544f84a1",