From ce23dbc1f092ec77ccaf740d2d2ca3ffa3c4d51d Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Sun, 30 Sep 2012 21:12:53 +0200 Subject: [PATCH] Suppress unknown pragma warning (STDC FENV_ACCESS). --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d60967aaf7..4dc58c8492 100644 --- a/setup.py +++ b/setup.py @@ -1985,6 +1985,7 @@ class PyBuildExt(build_ext): # solaris: problems with register allocation. # icc >= 11.0 works as well. define_macros = config['ppro'] + extra_compile_args.append('-Wno-unknown-pragmas') else: define_macros = config['ansi32'] else: -- 2.50.1