Skip to content

Commit

Permalink
chore(ci): set MACOSX_DEPLOYMENT_TARGET
Browse files Browse the repository at this point in the history
No change in semantics, but the environment variable is generally replacing the
`-mmacosx-version-min` compiler flag, so let's specify both.

(We could raise the minimum as well at some point, but unless there's an actual
reason to do so other than "we can" I'd just leave it as-is.)
  • Loading branch information
addaleax committed Nov 18, 2024
1 parent 2c72803 commit 2eab0b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .evergreen/compile-artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ if [ `uname` = Darwin ]; then
# match what Node.js 20 does on their own builder machines
export CFLAGS='-mmacosx-version-min=10.15'
export CXXFLAGS='-mmacosx-version-min=10.15'
export MACOSX_DEPLOYMENT_TARGET=10.15
fi

# The CI machines we have for Windows and x64 macOS are not
Expand Down

0 comments on commit 2eab0b9

Please sign in to comment.