We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fbbf21 commit becd4c9Copy full SHA for becd4c9
mesonpy/_tags.py
@@ -168,6 +168,9 @@ def _get_ios_platform_tag() -> str:
168
except ValueError:
169
version = tuple(map(int, platform.ios_ver().release.split('.')))[:2]
170
171
+ # Although _multiarch is an internal implementation detail, it's a core part
172
+ # of how CPython is implemented on iOS; this attribute is also relied upon
173
+ # by `packaging` as part of tag determiniation.
174
multiarch = sys.implementation._multiarch.replace('-', '_')
175
176
return f"ios_{version[0]}_{version[1]}_{multiarch}"
0 commit comments