patch-numpy_distutils_fcompiler_gnu_py 553 B

123456789101112131415161718
  1. $OpenBSD: patch-numpy_distutils_fcompiler_gnu_py,v 1.1 2015/01/15 02:55:22 daniel Exp $
  2. Causes segmentation fault on powerpc when building py-scipy.
  3. See discussion at:
  4. https://github.com/numpy/numpy/issues/5451
  5. --- numpy/distutils/fcompiler/gnu.py.orig Wed Jan 14 12:54:27 2015
  6. +++ numpy/distutils/fcompiler/gnu.py Wed Jan 14 12:54:33 2015
  7. @@ -201,7 +201,6 @@ class GnuFCompiler(FCompiler):
  8. opt = ['-O2']
  9. else:
  10. opt = ['-O3']
  11. - opt.append('-funroll-loops')
  12. return opt
  13. def _c_arch_flags(self):