There was an error while loading. Please reload this page.
1 parent ccd09f8 commit f35df98Copy full SHA for f35df98
1 file changed
.github/scripts/.build.zsh
@@ -248,7 +248,9 @@ ${_usage_host:-}"
248
249
# check the MACOS_VERSION env var to determine which version of MacOS to target
250
if [[ -n ${MACOS_VERSION} ]] {
251
- if [[ ${MACOS_VERSION} == "13" ]] {
+ if [[ ${MACOS_VERSION} == "embedded" ]] {
252
+ cmake_args+=(-DCMAKE_OSX_DEPLOYMENT_TARGET=12.0)
253
+ } elif [[ ${MACOS_VERSION} == "13" ]] {
254
# Setting target version to 13.3 to match Whisper.cpp deps target, as that's when the new Accelerate interface was added
255
cmake_args+=(-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOS_VERSION}.3)
256
} else {
0 commit comments