[bazel] populate all_files (#1274)
Fixes #1273. This was broken by #1045 with the comment "* all_files not needed?" They were needed.
This commit is contained in:
@@ -43,6 +43,15 @@ filegroup(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "all_files",
|
||||||
|
srcs = [
|
||||||
|
":ar_files",
|
||||||
|
":compiler_files",
|
||||||
|
":linker_files",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
filegroup(name = "empty")
|
filegroup(name = "empty")
|
||||||
|
|
||||||
# dlmalloc.bc is implictly added by the emscripten toolchain
|
# dlmalloc.bc is implictly added by the emscripten toolchain
|
||||||
@@ -61,7 +70,7 @@ emscripten_cc_toolchain_config_rule(
|
|||||||
|
|
||||||
cc_toolchain(
|
cc_toolchain(
|
||||||
name = "cc-compiler-wasm",
|
name = "cc-compiler-wasm",
|
||||||
all_files = ":empty",
|
all_files = ":all_files",
|
||||||
ar_files = ":ar_files",
|
ar_files = ":ar_files",
|
||||||
as_files = ":empty",
|
as_files = ":empty",
|
||||||
compiler_files = ":compiler_files",
|
compiler_files = ":compiler_files",
|
||||||
|
|||||||
Reference in New Issue
Block a user