From fb486c6a40fee977314b5a0326aab94ed52851e6 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Fri, 25 Mar 2011 15:50:47 +0100 Subject: BUG: distutils: change compile flag on AIX from -O5 to -O3. See #1261. --- numpy/distutils/fcompiler/ibm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils') diff --git a/numpy/distutils/fcompiler/ibm.py b/numpy/distutils/fcompiler/ibm.py index cbbf52bf7..1ec084027 100644 --- a/numpy/distutils/fcompiler/ibm.py +++ b/numpy/distutils/fcompiler/ibm.py @@ -86,7 +86,7 @@ class IBMFCompiler(FCompiler): return opt def get_flags_opt(self): - return ['-O5'] + return ['-O3'] if __name__ == '__main__': log.set_verbosity(2) -- cgit v1.2.1