mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
ignore fixup chains
This commit is contained in:
parent
1b92a24577
commit
1164fb4767
1 changed files with 4 additions and 1 deletions
|
@ -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"),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue