aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-10-05 19:23:41 -0400
committerJack Lloyd <[email protected]>2018-10-05 19:23:41 -0400
commit3746c08d094f97118a26da1e3c79fcc20c3c747e (patch)
treeb6f06b0b22127eef80ac0a642cc72cde02c621fb /configure.py
parentabc8e0a5a18052c158e2b109e6ac2fa8c51dce6a (diff)
Fix single amalgamation file with AVX2
Closes #1700
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
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