Skip to content

Commit

Permalink
BUG: distutils: change compile flag on AIX from -O5 to -O3. See #1261.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Mar 25, 2011
1 parent d4ee39f commit fb486c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/distutils/fcompiler/ibm.py
Expand Up @@ -86,7 +86,7 @@ def get_flags_linker_so(self):
return opt

def get_flags_opt(self):
return ['-O5']
return ['-O3']

if __name__ == '__main__':
log.set_verbosity(2)
Expand Down

0 comments on commit fb486c6

Please sign in to comment.