Skip to content

Commit

Permalink
3.1.45 (#1269)
Browse files Browse the repository at this point in the history
Also update emscripten include dir to v18, and change 17 to wildcard in emscripten deps
  • Loading branch information
dschuff authored Aug 23, 2023
1 parent 350c19a commit c8dcb45
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bazel/emscripten_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ filegroup(
"emscripten/cache/sysroot/include/c++/v1/**",
"emscripten/cache/sysroot/include/compat/**",
"emscripten/cache/sysroot/include/**",
"lib/clang/17/include/**",
"lib/clang/**/include/**",
]),
)
Expand Down
4 changes: 2 additions & 2 deletions bazel/emscripten_toolchain/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ def _impl(ctx):
"-iwithsysroot" + "/include/compat",
"-iwithsysroot" + "/include",
"-isystem",
emscripten_dir + "/lib/clang/17/include",
emscripten_dir + "/lib/clang/18/include",
],
),
# Inputs and outputs
Expand Down Expand Up @@ -1081,7 +1081,7 @@ def _impl(ctx):
emscripten_dir + "/emscripten/cache/sysroot/include/c++/v1",
emscripten_dir + "/emscripten/cache/sysroot/include/compat",
emscripten_dir + "/emscripten/cache/sysroot/include",
emscripten_dir + "/lib/clang/17/include",
emscripten_dir + "/lib/clang/18/include",
]

artifact_name_patterns = []
Expand Down
7 changes: 7 additions & 0 deletions bazel/revisions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
# DO NOT MODIFY

EMSCRIPTEN_TAGS = {
"3.1.45": struct(
hash = "2b7c5fb8ffeac3315deb1f82ab7bf8da544f84a1",
sha_linux = "1c0576765f8b34603eead6f2bd4bc77bf68ea2f0a39ed4c144514103e85bc7d9",
sha_mac = "87f63ebb2f9807435016b238bbf46ccb94c919ec0786b46463cd788634391b0c",
sha_mac_arm64 = "29e698772c0e00c21ce120dd1db1586f5c65507168babff148c2e628add6e72a",
sha_win = "891d49f8828f715ef621d55fe202de4929bbdc89b69101fd33963571458a7f47",
),
"3.1.44": struct(
hash = "b90507fcf011da61bacfca613569d882f7749552",
sha_linux = "5ffa2bab560a9cda6db6ee041a635d10e1ef26c8fc63675d682917b8d3d53263",
Expand Down
4 changes: 3 additions & 1 deletion emscripten-releases-tags.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"aliases": {
"latest": "3.1.44",
"latest": "3.1.45",
"latest-sdk": "latest",
"latest-arm64-linux": "3.1.43",
"latest-64bit": "latest",
Expand All @@ -10,6 +10,8 @@
"latest-releases-upstream": "latest"
},
"releases": {
"3.1.45": "2b7c5fb8ffeac3315deb1f82ab7bf8da544f84a1",
"3.1.45-asserts": "2aec03dfd8ce68c95316116dafbe30e273f32a81",
"3.1.44": "b90507fcf011da61bacfca613569d882f7749552",
"3.1.44-asserts": "06d00b0c62e435b743aa37c67b4ab76bc8568c79",
"3.1.43": "bf3c159888633d232c0507f4c76cc156a43c32dc",
Expand Down

0 comments on commit c8dcb45

Please sign in to comment.