From 657e8d79f9ea6c7f600afd9595813ab506d02f84 Mon Sep 17 00:00:00 2001 From: simondlevy Date: Fri, 13 Jul 2018 13:40:23 -0400 Subject: [PATCH] Added extra_compile_args = ['-std=gnu99'] + SIMD_FLAGS + OPT_FLAGS to module component of setup.py --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 4a41bee..2823542 100644 --- a/python/setup.py +++ b/python/setup.py @@ -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 )