diff options
Diffstat (limited to 'rust/snapshot_utils.go')
-rw-r--r-- | rust/snapshot_utils.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/snapshot_utils.go b/rust/snapshot_utils.go index bd7ca7f68..8dabd9bf6 100644 --- a/rust/snapshot_utils.go +++ b/rust/snapshot_utils.go @@ -57,6 +57,10 @@ func (mod *Module) SnapshotSharedLibs() []string { return mod.Properties.SnapshotSharedLibs } +func (mod *Module) SnapshotStaticLibs() []string { + return mod.Properties.SnapshotStaticLibs +} + func (mod *Module) Symlinks() []string { // TODO update this to return the list of symlinks when Rust supports defining symlinks return nil |