Skip to content

Commit 9b0db91

Browse files
[bazel] populate all_files (#1274)
Fixes #1273. This was broken by #1045 with the comment "* all_files not needed?" They were needed.
1 parent 3391e03 commit 9b0db91

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

bazel/emscripten_toolchain/BUILD.bazel

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ filegroup(
4343
],
4444
)
4545

46+
filegroup(
47+
name = "all_files",
48+
srcs = [
49+
":ar_files",
50+
":compiler_files",
51+
":linker_files",
52+
],
53+
)
54+
4655
filegroup(name = "empty")
4756

4857
# dlmalloc.bc is implictly added by the emscripten toolchain
@@ -61,7 +70,7 @@ emscripten_cc_toolchain_config_rule(
6170

6271
cc_toolchain(
6372
name = "cc-compiler-wasm",
64-
all_files = ":empty",
73+
all_files = ":all_files",
6574
ar_files = ":ar_files",
6675
as_files = ":empty",
6776
compiler_files = ":compiler_files",

0 commit comments

Comments
 (0)