Created
October 20, 2010 09:02
-
-
Save ChristopherMacGown/636065 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: numpy/distutils/fcompiler/gnu.py | |
| =================================================================== | |
| --- numpy/distutils/fcompiler/gnu.py (revision 8716) | |
| +++ numpy/distutils/fcompiler/gnu.py (working copy) | |
| @@ -254,7 +254,7 @@ | |
| if not sys.platform == 'darwin': | |
| return [] | |
| arch_flags = [] | |
| - for arch in ["ppc", "i686", "x86_64", "ppc64"]: | |
| + for arch in ["ppc", "i686", "x86_64"]: | |
| if _can_target(cmd, arch): | |
| arch_flags.extend(["-arch", arch]) | |
| return arch_flags |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment