Bump minimum macOS version to 10.15.7

This solves an issue with loading Swift libraries when running the
x86_64 binary.

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-10-20 16:55:39 +02:00
parent 629d3d473c
commit de24b4b4e8
5 changed files with 12 additions and 13 deletions

View file

@ -32,7 +32,7 @@ pub struct SwiftTarget {
pub paths: SwiftPaths,
}
const MACOS_TARGET_VERSION: &str = "10.15";
const MACOS_TARGET_VERSION: &str = "10.15.7";
fn main() {
if cfg!(not(any(test, feature = "test-support"))) {
@ -81,13 +81,9 @@ fn build_bridge(swift_target: &SwiftTarget) {
}
fn link_swift_stdlib(swift_target: &SwiftTarget) {
swift_target
.paths
.runtime_library_paths
.iter()
.for_each(|path| {
println!("cargo:rustc-link-search=native={}", path);
});
for path in &swift_target.paths.runtime_library_paths {
println!("cargo:rustc-link-search=native={}", path);
}
}
fn link_webrtc_framework(swift_target: &SwiftTarget) {