Changeset 9509a412 for tests/pybin
- Timestamp:
- Aug 24, 2020, 8:31:26 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0254454
- Parents:
- 61b1447
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r61b1447 r9509a412 27 27 'x86_64' : 'x64', 28 28 'x86' : 'x86', 29 'aarch64' : 'arm', 29 'aarch64' : 'arm64', 30 'arm64' : 'arm64', 31 'ARM64' : 'arm64', 30 32 'i386' : 'x86', 31 33 'i486' : 'x86', 32 34 'i686' : 'x86', 33 35 'Intel 80386' : 'x86', 34 'arm' : 'arm', 35 'ARM' : 'arm', 36 'arm' : 'arm32', 37 'ARM' : 'arm32', 38 'arm32' : 'arm32', 39 'ARM32' : 'arm32', 36 40 } 37 41 38 42 CrossCompileFlags = { 39 'x64' : 'ARCH_FLAGS=-m64', 40 'x86' : 'ARCH_FLAGS=-m32', 43 'x64' : 'ARCH_FLAGS=-m64', 44 'x86' : 'ARCH_FLAGS=-m32', 45 'arm64': 'ARCH_FLAGS=', 46 'arm32': 'ARCH_FLAGS=', 41 47 } 42 48
Note: See TracChangeset
for help on using the changeset viewer.