update the default macos version min to 10.14

This commit is contained in:
Andrew Kelley
2019-06-07 12:20:02 -04:00
parent 786f3cdd13
commit 5784631fab
3 changed files with 3 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ static void init_darwin_native(CodeGen *g) {
} else if (ios_target) {
g->mios_version_min = buf_create_from_str(ios_target);
} else if (g->zig_target->os != OsIOS) {
g->mmacosx_version_min = buf_create_from_str("10.10");
g->mmacosx_version_min = buf_create_from_str("10.14");
}
}