remove undefined -dynamic_lookup

350845837

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2023-04-18 19:41:01 +02:00 committed by GitHub
parent 5f2d550c3d
commit bd6ae25cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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