ignore fixup chains

This commit is contained in:
Brendan Hansknecht 2022-12-14 20:31:56 -08:00
parent 1b92a24577
commit 1164fb4767
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -1255,7 +1255,10 @@ fn link_macos(
output_path.set_extension("dylib");
(vec!["-dylib", "-undefined", "dynamic_lookup"], output_path)
(
vec!["-dylib", "-undefined", "dynamic_lookup", "-no_fixup_chains"],
output_path,
)
}
LinkType::None => internal_error!("link_macos should not be called with link type of none"),
};