Changes between Initial Version and Version 1 of Ticket #68908, comment 9


Ignore:
Timestamp:
Dec 17, 2023, 5:56:08 AM (5 months ago)
Author:
barracuda156
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #68908, comment 9

    initial v1  
    11On a side note, here is why pep517 thinks this is a cross-build:
    2 ```
     2{{{
    33        if sysconfig.get_platform().startswith('macosx-'):
    44            archflags = os.environ.get('ARCHFLAGS', '').strip()
     
    2525                    self._meson_cross_file.write_text(cross_file_data)
    2626                    self._meson_args['setup'].extend(('--cross-file', os.fspath(self._meson_cross_file)))
    27 ```
     27}}}
    2828But python has `PowerPC`, which is not the arch name:
    29 ```
     29{{{
    3030macmini:macports-ports svacchanda$ /opt/local/bin/python3.11 -c 'import platform; print(platform.mac_ver())'
    3131('10.6.8', ('', '', ''), 'PowerPC')
    32 ```
     32}}}