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 cd44214 commit 7efa417Copy full SHA for 7efa417
mesonpy/__init__.py
@@ -719,6 +719,9 @@ def __init__(
719
''')
720
self._meson_cross_file.write_text(cross_file_data, encoding='utf-8')
721
self._meson_args['setup'].extend(('--cross-file', os.fspath(self._meson_cross_file)))
722
+
723
+ # Support iOS targets. iOS does not have native build tools and always
724
+ # requires cross compilation: synthesize the appropriate cross file.
725
elif sysconfig.get_platform().startswith('ios-'):
726
ios_ver = platform.ios_ver() # type: ignore[attr-defined]
727
0 commit comments