Make x86_32 imply NO_AVX2, NO_AVX512 in addition to NO_AVX
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Thu, 28 Feb 2019 08:58:25 +0000 (09:58 +0100)
committerGitHub <noreply@github.com>
Thu, 28 Feb 2019 08:58:25 +0000 (09:58 +0100)
fixes #2033

Makefile.system

index 67c8cd1..bbd7774 100644 (file)
@@ -155,7 +155,7 @@ GETARCH_FLAGS       += -DNO_AVX
 endif
 
 ifeq ($(BINARY), 32)
-GETARCH_FLAGS  += -DNO_AVX
+GETARCH_FLAGS  += -DNO_AVX -DNO_AVX2 -DNO_AVX512
 endif
 
 ifeq ($(NO_AVX2), 1)