Skip to content

Commit 23d6101

Browse files
committed
Increase macOS deployment target to 11.0 for Skia m143
Skia m143 uses std::optional::value() which requires macOS 10.13+. Setting to 11.0 to match Skia's own build configuration and ensure compatibility when building from source.
1 parent f9f7b8a commit 23d6101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_skia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def build_skia(
205205

206206
# https://github.com/fonttools/skia-pathops/issues/41
207207
if sys.platform == "darwin":
208-
env["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
208+
env["MACOSX_DEPLOYMENT_TARGET"] = "11.0"
209209

210210
if args.sync_deps:
211211
subprocess.check_call(

0 commit comments

Comments
 (0)