Browse Source

Suppress unknown pragma warning (STDC FENV_ACCESS).

pull/224/head
Stefan Krah 13 years ago
parent
commit
ce23dbc1f0
  1. 1
      setup.py

1
setup.py

@ -1985,6 +1985,7 @@ class PyBuildExt(build_ext):
# solaris: problems with register allocation. # solaris: problems with register allocation.
# icc >= 11.0 works as well. # icc >= 11.0 works as well.
define_macros = config['ppro'] define_macros = config['ppro']
extra_compile_args.append('-Wno-unknown-pragmas')
else: else:
define_macros = config['ansi32'] define_macros = config['ansi32']
else: else:

Loading…
Cancel
Save