We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9a069 commit e286e4dCopy full SHA for e286e4d
1 file changed
mesonpy/__init__.py
@@ -711,6 +711,8 @@ def __init__(
711
cpp = ['c++', '-arch', {arch!r}]
712
objc = ['cc', '-arch', {arch!r}]
713
objcpp = ['c++', '-arch', {arch!r}]
714
+ strip = ['strip', '-arch', {arch!r}]
715
+
716
[host_machine]
717
system = 'darwin'
718
cpu = {arch!r}
@@ -731,11 +733,12 @@ def __init__(
731
733
732
734
cross_file_data = textwrap.dedent(f'''
735
[binaries]
736
+ ar = '{arch}-apple-{subsystem}-ar'
737
c = '{arch}-apple-{subsystem}-clang'
738
cpp = '{arch}-apple-{subsystem}-clang++'
739
objc = '{arch}-apple-{subsystem}-clang'
740
objcpp = '{arch}-apple-{subsystem}-clang++'
- ar = '{arch}-apple-{subsystem}-ar'
741
742
743
744
system = 'ios'
0 commit comments