Skip to content

Instantly share code, notes, and snippets.

@ChristopherMacGown
Created October 20, 2010 09:02
Show Gist options
  • Select an option

  • Save ChristopherMacGown/636065 to your computer and use it in GitHub Desktop.

Select an option

Save ChristopherMacGown/636065 to your computer and use it in GitHub Desktop.
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