diff options
author | Jack Lloyd <[email protected]> | 2018-10-05 19:23:41 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-05 19:23:41 -0400 |
commit | 3746c08d094f97118a26da1e3c79fcc20c3c747e (patch) | |
tree | b6f06b0b22127eef80ac0a642cc72cde02c621fb /configure.py | |
parent | abc8e0a5a18052c158e2b109e6ac2fa8c51dce6a (diff) |
Fix single amalgamation file with AVX2
Closes #1700
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.py b/configure.py index 0b1df5fc3..5cede50e0 100755 --- a/configure.py +++ b/configure.py @@ -2518,6 +2518,8 @@ class AmalgamationGenerator(object): internal_headers = [] def known_isa_header(hdr): + if self._options.single_amalgamation_file: + return None if hdr == 'simd_avx2.h': return 'avx2' return None |