summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/gnu.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-08-26 21:20:00 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-08-26 21:20:00 +0000
commitc0ccc6a24981fe8a495bb3e7ba1a33fe0251892c (patch)
tree476ba9e99cfc4130e5bfa1a3c2e3ea47db1fb7f8 /numpy/distutils/fcompiler/gnu.py
parent5e961fa9e0f873ed6e9c01b4dd3248ccce7cfa5a (diff)
downloadnumpy-c0ccc6a24981fe8a495bb3e7ba1a33fe0251892c.tar.gz
Update mingw-w64 support for gfortran.
Gfortran does not append a leading underscore anymore, so the -fno-leading-underscore is not necessary anymore.
Diffstat (limited to 'numpy/distutils/fcompiler/gnu.py')
-rw-r--r--numpy/distutils/fcompiler/gnu.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py
index cbda5c1c7..4c03b779a 100644
--- a/numpy/distutils/fcompiler/gnu.py
+++ b/numpy/distutils/fcompiler/gnu.py
@@ -25,7 +25,8 @@ def is_win64():
return sys.platform == "win32" and platform.architecture()[0] == "64bit"
if is_win64():
- _EXTRAFLAGS = ["-fno-leading-underscore"]
+ #_EXTRAFLAGS = ["-fno-leading-underscore"]
+ _EXTRAFLAGS = []
else:
_EXTRAFLAGS = []