Skip to content

Commit

Permalink
Update minimum macOS version for new SDL version
Browse files Browse the repository at this point in the history
  • Loading branch information
jangler committed Nov 30, 2022
1 parent 60f35fa commit b780450
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/build-uni.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

DEVELOPER="`xcode-select -print-path`/Platforms/MacOSX.platform/Developer"

# Intel 64-bit compiler flags (10.6 runtime compatibility)
CLANG_COMPILE_X64="clang -arch x86_64 -mmacosx-version-min=10.6 \
-DMAC_OS_X_VERSION_MIN_REQUIRED=1060 \
# Intel 64-bit compiler flags (10.7 runtime compatibility)
CLANG_COMPILE_X64="clang -arch x86_64 -mmacosx-version-min=10.7 \
-DMAC_OS_X_VERSION_MIN_REQUIRED=1070 \
-I/usr/local/include \
-isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.9.sdk"

CLANG_LINK_X64="-mmacosx-version-min=10.6"
CLANG_LINK_X64="-mmacosx-version-min=10.7"

# ARM 64-bit compiler flags (11.0 runtime compatibility)
CLANG_COMPILE_ARM64="clang -arch arm64 -mmacosx-version-min=11.0 \
Expand Down

0 comments on commit b780450

Please sign in to comment.