From 35ad38f61a8221cbd331c6805363fa9958606bae Mon Sep 17 00:00:00 2001 From: Thomas Haener Date: Tue, 20 Jun 2017 21:45:33 -0700 Subject: [PATCH] Fixed -qopenmp for future versions of icc. since -openmp is deprecated. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f4c8ca35b..4d78e451a 100755 --- a/setup.py +++ b/setup.py @@ -114,7 +114,7 @@ def build_extensions(self): if has_flag(self.compiler, '-fopenmp'): openmp = '-fopenmp' elif has_flag(self.compiler, '-qopenmp'): - openmp = '-openmp' + openmp = '-qopenmp' if ct == 'msvc': openmp = '' # supports only OpenMP 2.0