We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fcf719 commit 0372f89Copy full SHA for 0372f89
src/lib.rs
@@ -99,11 +99,10 @@ impl Build {
99
make.arg("-e");
100
101
match target {
102
- "x86_64-apple-darwin" => {
103
- // 10.15 causes segmentation fault on github ci
+ "x86_64-apple-darwin" if env::var_os("MACOSX_DEPLOYMENT_TARGET").is_none() => {
104
make.env("MACOSX_DEPLOYMENT_TARGET", "10.11");
105
}
106
- "aarch64-apple-darwin" => {
+ "aarch64-apple-darwin" if env::var_os("MACOSX_DEPLOYMENT_TARGET").is_none() => {
107
make.env("MACOSX_DEPLOYMENT_TARGET", "11.0");
108
109
_ if target.contains("linux") => {
0 commit comments