Skip to content

Commit 1042dee

Browse files
authored
chore: target macOS 11 as minimum (#26)
## What's Changed Many things can't target 10.12 and anyways, 10.x is long out of support.
1 parent bb6a8f1 commit 1042dee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adbc_drivers_dev/make.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ def build(
243243
env[var] = os.environ[var]
244244

245245
if platform.system() == "Darwin":
246-
append_flags(env, "CGO_CFLAGS", "-mmacosx-version-min=10.12")
247-
append_flags(env, "CGO_LDFLAGS", "-mmacosx-version-min=10.12")
246+
append_flags(env, "CGO_CFLAGS", "-mmacosx-version-min=11.0")
247+
append_flags(env, "CGO_LDFLAGS", "-mmacosx-version-min=11.0")
248248

249249
if ci and platform.system() == "Linux":
250250
env["SOURCE_ROOT"] = str(repo_root)

0 commit comments

Comments
 (0)