Description: remove fpu flags that are not present on ancient CPUs
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-07-02
--- a/setup.py
+++ b/setup.py
@@ -49,15 +49,6 @@
 # extra_compile_args = []
 # os.environ["CFLAGS"] = '-g -Wall -O2 -std=c99'
 
-arch=platform.machine()
-if arch in ["aarch64", "arm64"]:
-    extra_compile_args.append('-D__ARM_NEON__')
-elif arch in ["aarch64"]:
-	extra_compile_args.append('-mfpu=neon')
-elif arch in ["x86_64"]:
-    extra_compile_args.extend(['-DSTREAMVBYTE_SSSE3=1', '-mssse3'])   # WARNING: ancient x86_64 CPUs don't have SSSE3
-
-
 # include_dirs = ['include/', np.get_include() ]
 libraries = ['m', 'z', 'streamvbyte']
 library_dirs = ['.']
