You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if sess.target.is_like_osx {
// Use system `strip` when running on host macOS.
// <https://github.com/rust-lang/rust/pull/130781>
let stripcmd = if cfg!(target_os = "macos") { "/usr/bin/strip" } else { "strip" };
If the host and target are both macOS, on 1.83.0 this path is hardcoded.
The rust toolchain will ship rust-objcopy from LLVM and use that for stripping. This has already been merged to master and is slated for the 1.84 milestone.
Compiling rust programs is failing unless
strip = false
due to a hardcoded dependency on/usr/bin/strip
The text was updated successfully, but these errors were encountered: