mach: Don't package rustc rt.

Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
This commit is contained in:
Jonathan Schwender 2025-05-30 18:57:57 +08:00
parent a7be6f3b6e
commit 7a37696547
No known key found for this signature in database

View file

@ -237,7 +237,7 @@ def find_non_system_dependencies_with_otool(binary_path: str) -> Set[str]:
# No need to do any processing for system libraries. They should be
# present on all macOS systems.
if not is_macos_system_library(dependency):
if not (is_macos_system_library(dependency) or 'librustc-stable_rt' in dependency):
output.add(dependency)
return output