Skip to content

Commit 37b85e9

Browse files
authored
3.1.47 (#1286)
1 parent 7171748 commit 37b85e9

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

bazel/emscripten_deps.bzl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,41 +121,41 @@ def emscripten_deps(emscripten_version = "latest"):
121121
http_archive(
122122
name = "emscripten_bin_linux",
123123
strip_prefix = "install",
124-
url = emscripten_url.format("linux", revision.hash, "", "tbz2"),
124+
url = emscripten_url.format("linux", revision.hash, "", "tar.xz"),
125125
sha256 = revision.sha_linux,
126126
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
127-
type = "tar.bz2",
127+
type = "tar.xz",
128128
)
129129

130130
if "emscripten_bin_linux_arm64" not in excludes:
131131
http_archive(
132132
name = "emscripten_bin_linux_arm64",
133133
strip_prefix = "install",
134-
url = emscripten_url.format("linux", revision.hash, "-arm64", "tbz2"),
134+
url = emscripten_url.format("linux", revision.hash, "-arm64", "tar.xz"),
135135
# Not all versions have a linux/arm64 release: https://github.com/emscripten-core/emsdk/issues/547
136136
sha256 = getattr(revision, "sha_linux_arm64", None),
137137
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
138-
type = "tar.bz2",
138+
type = "tar.xz",
139139
)
140140

141141
if "emscripten_bin_mac" not in excludes:
142142
http_archive(
143143
name = "emscripten_bin_mac",
144144
strip_prefix = "install",
145-
url = emscripten_url.format("mac", revision.hash, "", "tbz2"),
145+
url = emscripten_url.format("mac", revision.hash, "", "tar.xz"),
146146
sha256 = revision.sha_mac,
147147
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
148-
type = "tar.bz2",
148+
type = "tar.xz",
149149
)
150150

151151
if "emscripten_bin_mac_arm64" not in excludes:
152152
http_archive(
153153
name = "emscripten_bin_mac_arm64",
154154
strip_prefix = "install",
155-
url = emscripten_url.format("mac", revision.hash, "-arm64", "tbz2"),
155+
url = emscripten_url.format("mac", revision.hash, "-arm64", "tar.xz"),
156156
sha256 = revision.sha_mac_arm64,
157157
build_file_content = BUILD_FILE_CONTENT_TEMPLATE.format(bin_extension = ""),
158-
type = "tar.bz2",
158+
type = "tar.xz",
159159
)
160160

161161
if "emscripten_bin_win" not in excludes:

bazel/revisions.bzl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# DO NOT MODIFY
33

44
EMSCRIPTEN_TAGS = {
5+
"3.1.47": struct(
6+
hash = "39ade279e75e6d17dd6b7eb9fba2006e61fe966b",
7+
sha_linux = "bdc50abe5c7d4b4f14acea4ec36b270e86770cea2da4b0c393b80a692dc7eb7a",
8+
sha_mac = "6a3a116707037d75a967a7d971894d8ace74a2a230aa50ba55e88e7cd7b94953",
9+
sha_mac_arm64 = "b13d228e6a1c89c13a1500fff07dcf093fb01fa621d458496d4a6d7f05cfd600",
10+
sha_win = "66a6c4f0cda4ace14a86d3e59d20685d35211854d21670632b0566ac73638245",
11+
),
512
"3.1.46": struct(
613
hash = "21644188d5c473e92f1d7df2f9f60c758a78a486",
714
sha_linux = "75cbf14629b06e417b597d3f897ad7d881c53762380aca2f0dd85f1b15891511",

emscripten-releases-tags.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"aliases": {
3-
"latest": "3.1.46",
3+
"latest": "3.1.47",
44
"latest-sdk": "latest",
55
"latest-arm64-linux": "3.1.45",
66
"latest-64bit": "latest",
@@ -10,6 +10,8 @@
1010
"latest-releases-upstream": "latest"
1111
},
1212
"releases": {
13+
"3.1.47": "39ade279e75e6d17dd6b7eb9fba2006e61fe966b",
14+
"3.1.47-asserts": "dc49d84ed226a5a30a5117cefc07c781f6c0d16e",
1315
"3.1.46": "21644188d5c473e92f1d7df2f9f60c758a78a486",
1416
"3.1.46-asserts": "3e09b252d0d5a8e045d2ca92c606bfb9874bddf8",
1517
"3.1.45": "2b7c5fb8ffeac3315deb1f82ab7bf8da544f84a1",

0 commit comments

Comments
 (0)