| Index: pydir/crosstest_generator.py
|
| diff --git a/pydir/crosstest_generator.py b/pydir/crosstest_generator.py
|
| index b5d64ab67679d71b5168baeab9c48ccff28e0a37..dd72b805e6acda424f8defcec25f24449351bdc6 100755
|
| --- a/pydir/crosstest_generator.py
|
| +++ b/pydir/crosstest_generator.py
|
| @@ -55,15 +55,17 @@ def main():
|
| root = FindBaseNaCl()
|
|
|
| # The rest of the attribute sets.
|
| - targets = [ 'x8632', 'arm32' ]
|
| + targets = [ 'x8632', 'x8664', 'arm32' ]
|
| sandboxing = [ 'native', 'sandbox' ]
|
| opt_levels = [ 'Om1', 'O2' ]
|
| arch_attrs = { 'x8632': [ 'sse2', 'sse4.1' ],
|
| + 'x8664': [ 'sse2', 'sse4.1' ],
|
| 'arm32': [ 'neon', 'hwdiv-arm' ] }
|
| flat_attrs = []
|
| for v in arch_attrs.values():
|
| flat_attrs += v
|
| arch_flags = { 'x8632': [],
|
| + 'x8664': [],
|
| # ARM doesn't have an integrated assembler yet.
|
| 'arm32': ['--filetype=asm'] }
|
| # all_keys is only used in the help text.
|
|
|