Skip to content

Commit

Permalink
Merge pull request #12246 from keymanapp/fix/core/cherry-pick/11423-f…
Browse files Browse the repository at this point in the history
…ix-mac-build-version

fix(core): set mac build version for meson cli build to 10.13 🍒 🏠
  • Loading branch information
mcdurdin authored Aug 23, 2024
2 parents 0726c50 + e20e231 commit 9bb5a0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions core/cross-mac-arm64.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ cpu = 'arm64'
endian = 'little'

[binaries]
c = ['clang', '-arch', 'arm64']
objc = ['clang', '-arch', 'arm64']
cpp = ['clang++', '-arch', 'arm64']
c = ['clang', '-arch', 'arm64', '-mmacosx-version-min=10.13']
objc = ['clang', '-arch', 'arm64', '-mmacosx-version-min=10.13']
cpp = ['clang++', '-arch', 'arm64', '-mmacosx-version-min=10.13']
ar = 'ar'
ld = 'ld'
strip = 'strip'
Expand Down
6 changes: 3 additions & 3 deletions core/cross-mac-x86_64.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ cpu = 'x86_64'
endian = 'little'

[binaries]
c = ['clang', '-arch', 'x86_64']
objc = ['clang', '-arch', 'x86_64']
cpp = ['clang++', '-arch', 'x86_64']
c = ['clang', '-arch', 'x86_64', '-mmacosx-version-min=10.13']
objc = ['clang', '-arch', 'x86_64', '-mmacosx-version-min=10.13']
cpp = ['clang++', '-arch', 'x86_64', '-mmacosx-version-min=10.13']
ar = 'ar'
ld = 'ld'
strip = 'strip'
Expand Down

0 comments on commit 9bb5a0c

Please sign in to comment.