Changes between Initial Version and Version 1 of Ticket #68908, comment 9
- Timestamp:
- Dec 17, 2023, 5:56:08 AM (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #68908, comment 9
initial v1 1 1 On a side note, here is why pep517 thinks this is a cross-build: 2 ``` 2 {{{ 3 3 if sysconfig.get_platform().startswith('macosx-'): 4 4 archflags = os.environ.get('ARCHFLAGS', '').strip() … … 25 25 self._meson_cross_file.write_text(cross_file_data) 26 26 self._meson_args['setup'].extend(('--cross-file', os.fspath(self._meson_cross_file))) 27 ``` 27 }}} 28 28 But python has `PowerPC`, which is not the arch name: 29 ``` 29 {{{ 30 30 macmini:macports-ports svacchanda$ /opt/local/bin/python3.11 -c 'import platform; print(platform.mac_ver())' 31 31 ('10.6.8', ('', '', ''), 'PowerPC') 32 ``` 32 }}}