Skip to content

Commit

Permalink
fix(core): set mac build version for meson cli build to 10.13
Browse files Browse the repository at this point in the history
- add as option to compiler
- Match version in #11302

Fixes: #11423
  • Loading branch information
srl295 committed Aug 19, 2024
1 parent fb3bee1 commit 7c0f51c
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 7c0f51c

Please sign in to comment.