Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Includes LTO and non-LTO, with non-LTO as the default
  • Loading branch information
dschuff authored Aug 13, 2021
1 parent 6d1efad commit 9532440
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bazel/emscripten_toolchain/crosstool.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ def _impl(ctx):
"-iwithsysroot" + "/include/c++/v1",
"-iwithsysroot" + "/include/compat",
"-iwithsysroot" + "/include",
"-isystem", emscripten_dir + "/lib/clang/13.0.0/include",
"-isystem", emscripten_dir + "/lib/clang/14.0.0/include",
],
),
# Inputs and outputs
Expand Down Expand Up @@ -1072,7 +1072,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/13.0.0/include",
emscripten_dir + "/lib/clang/14.0.0/include",
]

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

EMSCRIPTEN_TAGS = {
"2.0.27": struct(
hash = "1ac46e3b84955231ab4a4f4cbe0c7ac28c86b8cc",
sha_linux = "3e124e278de168cf22e03b93b2f14a65a86777e428cdaab7e5e1c2289eb41605",
sha_mac = "388262b9e1042ef9a3a1945d5a23dcd634c8042a225e8fdf80bcc2c1cb7e05cc",
sha_win = "762276a332432e717afb988310d21ae10e36facc1e05bfd77042a364fb43cc3c",
),
"2.0.26": struct(
hash = "823d37b15d1ab61bc9ac0665ceef6951d3703842",
sha_linux = "996e16d368a99dd4dd12126acbcb8bea9a607b5257cc7b747c4afc2f036fd8cf",
Expand Down
4 changes: 3 additions & 1 deletion emscripten-releases-tags.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"aliases": {
"latest": "2.0.26-lto",
"latest": "2.0.27",
"latest-sdk": "latest",
"latest-64bit": "latest",
"sdk-latest-64bit": "latest",
Expand All @@ -9,6 +9,8 @@
"latest-releases-upstream": "latest"
},
"releases": {
"2.0.27-lto": "79509f70be89d66b8441383de94b3e5a91dedc68",
"2.0.27": "1ac46e3b84955231ab4a4f4cbe0c7ac28c86b8cc",
"2.0.26-lto": "b92ba43f3ac92ab6f1ce6136a8c5969b68ba6968",
"2.0.26": "823d37b15d1ab61bc9ac0665ceef6951d3703842",
"2.0.25": "f6f001b08fbb67935379cf13d17fd9bfdbaff791",
Expand Down

0 comments on commit 9532440

Please sign in to comment.