Added extra_compile_args = ['-std=gnu99'] + SIMD_FLAGS + OPT_FLAGS to module component of setup.py

This commit is contained in:
simondlevy
2018-07-13 13:40:23 -04:00
parent 9429576aff
commit 657e8d79f9

View File

@@ -50,7 +50,7 @@ from distutils.core import setup, Extension
module = Extension('pybreezyslam',
sources = SOURCES,
extra_compile_args = SIMD_FLAGS + OPT_FLAGS
extra_compile_args = ['-std=gnu99'] + SIMD_FLAGS + OPT_FLAGS
)