Changeset a8d4b59 for tests/pybin/settings.py
- Timestamp:
- Aug 5, 2019, 10:12:43 AM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- c63d48f
- Parents:
- 298ab3d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r298ab3d ra8d4b59 19 19 class Architecture: 20 20 KnownArchitectures = { 21 'x64' 22 'x86-64' 23 'x86_64' 24 ' aarch64' : 'x64',25 ' x86' : 'x86',21 'x64' : 'x64', 22 'x86-64' : 'x64', 23 'x86_64' : 'x64', 24 'x86' : 'x86', 25 'aarch64' : 'arm', 26 26 'i386' : 'x86', 27 27 'i486' : 'x86', 28 28 'i686' : 'x86', 29 29 'Intel 80386' : 'x86', 30 'arm' 31 'ARM' 30 'arm' : 'arm', 31 'ARM' : 'arm', 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.