chore: set macOS deployment target to 26.0
All checks were successful
Security Scan / security (push) Successful in 11s
Test / Vet & Build (push) Successful in 54s

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-02-26 05:38:53 +00:00
parent 580e547848
commit 2edb45e2c5
2 changed files with 2 additions and 2 deletions

View file

@ -82,7 +82,7 @@ The `#cgo` directives in `internal/metal/metal.go` set all required flags automa
```c
#cgo CXXFLAGS: -std=c++17
#cgo CFLAGS: -mmacosx-version-min=13.3
#cgo CFLAGS: -mmacosx-version-min=26.0
#cgo CPPFLAGS: -I${SRCDIR}/../../dist/include
#cgo LDFLAGS: -L${SRCDIR}/../../dist/lib -lmlxc -lmlx
#cgo darwin LDFLAGS: -framework Foundation -framework Metal -framework Accelerate

View file

@ -5,7 +5,7 @@ package metal
/*
#cgo CXXFLAGS: -std=c++17
#cgo CFLAGS: -mmacosx-version-min=13.3
#cgo CFLAGS: -mmacosx-version-min=26.0
#cgo CPPFLAGS: -I${SRCDIR}/../../dist/include
#cgo LDFLAGS: -L${SRCDIR}/../../dist/lib -lmlxc -lmlx
#cgo darwin LDFLAGS: -framework Foundation -framework Metal -framework Accelerate