Skip to content

Commit

Permalink
Include additional .so files in Rustc actions
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Mar 21, 2024
1 parent 63bb0dd commit 3527ece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/private/repository_utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ filegroup(
"lib/*{dylib_ext}",
"lib/rustlib/{target_triple}/codegen-backends/*{dylib_ext}",
"lib/rustlib/{target_triple}/bin/rust-lld{binary_ext}",
"lib/rustlib/{target_triple}/lib/*{dylib_ext}",
"lib/rustlib/{target_triple}/lib/*{dylib_ext}*",
],
allow_empty = True,
),
Expand Down Expand Up @@ -193,7 +193,7 @@ rust_stdlib_filegroup(
srcs = glob(
[
"lib/rustlib/{target_triple}/lib/*.rlib",
"lib/rustlib/{target_triple}/lib/*{dylib_ext}",
"lib/rustlib/{target_triple}/lib/*{dylib_ext}*",
"lib/rustlib/{target_triple}/lib/*{staticlib_ext}",
"lib/rustlib/{target_triple}/lib/self-contained/**",
],
Expand Down

0 comments on commit 3527ece

Please sign in to comment.