mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
constants.py: fix powerpc arch detection
This commit is contained in:
parent
9ad579bd35
commit
2d4a8d7959
1 changed files with 2 additions and 2 deletions
|
|
@ -79,8 +79,8 @@ CPU_preprocessor_checks = OrderedDict((
|
|||
('ia64', '__ia64__'),
|
||||
('s390x', '__s390x__'),
|
||||
('s390', '__s390__'),
|
||||
('ppc64', '__powerpc64__'),
|
||||
('ppc', '__powerpc__'),
|
||||
('ppc64', '__powerpc64__ || __ppc64__'),
|
||||
('ppc', '__powerpc__ || __ppc__'),
|
||||
('Alpha', '__alpha__'),
|
||||
('hppa', '__hppa__'),
|
||||
('sparc64', '__sparc__ && __arch64__'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue