mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 14:52:56 +03:00
9a243cf7d3
Don't attempt to export compiler-builtins symbols from rust dylibs They are marked with hidden visibility to prevent them from getting exported, so we shouldn't ask the linker to export them anyway. The only thing that does it cause a warning on macOS. Part of https://github.com/rust-lang/rust/issues/136096 cc `@jyn514`