From def609df8b923e07e6de02066eb02fc0edd65eed Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Wed, 22 Aug 2018 10:55:22 -0500 Subject: [PATCH] Older clang doesn't support fopenmp --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65da29f..3a7a70d 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def main(): if build_mode == "openmp-ofast": FOPT_ARGS = "-Ofast -fopenmp" - OPT_ARGS = "-Ofast -fopenmp" + OPT_ARGS = "-Ofast" EXTRA_LINK_ARGS = "-fopenmp" elif build_mode == "openmp-opt": -- GitLab