From 3527ece4f1fd631049b9e23e4f0aab132df1842e Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Thu, 21 Mar 2024 08:50:11 -0700 Subject: [PATCH] Include additional `.so` files in Rustc actions --- rust/private/repository_utils.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/private/repository_utils.bzl b/rust/private/repository_utils.bzl index eb95f92c28..b8ef97ca49 100644 --- a/rust/private/repository_utils.bzl +++ b/rust/private/repository_utils.bzl @@ -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, ), @@ -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/**", ],