We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd44214 commit 3bca08fCopy full SHA for 3bca08f
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 transparently building for iOS targets: setup a cross build
724
+ # with the correct compilers and definition of the host machine.
725
elif sysconfig.get_platform().startswith('ios-'):
726
ios_ver = platform.ios_ver() # type: ignore[attr-defined]
727
0 commit comments