summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-06-06 20:04:32 +0000
committercookedm <cookedm@localhost>2006-06-06 20:04:32 +0000
commit79ab0f4ba033372dc568a115b52fa013f7433495 (patch)
treebc10ac17c80975b759651e93885c5c273e88407b /numpy/distutils/fcompiler
parentd1db955edafd63f3cf7d3a331ce3bba94dde48ae (diff)
downloadnumpy-79ab0f4ba033372dc568a115b52fa013f7433495.tar.gz
Add power to integer scalar types.
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r--numpy/distutils/fcompiler/gnu.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py
index abcad285d..e56e0303d 100644
--- a/numpy/distutils/fcompiler/gnu.py
+++ b/numpy/distutils/fcompiler/gnu.py
@@ -27,13 +27,13 @@ class GnuFCompiler(FCompiler):
break
executables = {
'version_cmd' : [fc_exe,"--version"],
- 'compiler_f77' : [fc_exe,"-Wall","-fno-second-underscore"],
+ 'compiler_f77' : [fc_exe, "-g", "-Wall","-fno-second-underscore"],
'compiler_f90' : None,
'compiler_fix' : None,
- 'linker_so' : [fc_exe,"-Wall"],
+ 'linker_so' : [fc_exe, "-g", "-Wall"],
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"],
- 'linker_exe' : [fc_exe,"-Wall"]
+ 'linker_exe' : [fc_exe, "-g", "-Wall"]
}
module_dir_switch = None
module_include_switch = None