summaryrefslogtreecommitdiff
path: root/scipy_distutils/nagfcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-02-18 08:27:30 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-02-18 08:27:30 +0000
commitf8721a7c4a8bcaa47622be6e49d589da9b0ff5d5 (patch)
treecfc2cf8c4aac6a0ba30819f1a61f2caccb4f94b1 /scipy_distutils/nagfcompiler.py
parente252edd12120404b9ef8e9334c4b5659ed6d2726 (diff)
downloadnumpy-f8721a7c4a8bcaa47622be6e49d589da9b0ff5d5.tar.gz
xlf is acctually F77 compiler. Fine tuned replacing crt->bundle in xlf.cfg.
Diffstat (limited to 'scipy_distutils/nagfcompiler.py')
-rw-r--r--scipy_distutils/nagfcompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/nagfcompiler.py b/scipy_distutils/nagfcompiler.py
index 827efb932..193ed02c5 100644
--- a/scipy_distutils/nagfcompiler.py
+++ b/scipy_distutils/nagfcompiler.py
@@ -21,7 +21,7 @@ class NAGFCompiler(FCompiler):
def get_flags_linker_so(self):
if sys.platform=='darwin':
- return ['-Wl,-bundle,-flat_namespace,-undefined,suppress']
+ return ['-unsharedf95','-Wl,-bundle,-flat_namespace,-undefined,suppress']
return ["-Wl,shared"]
def get_flags_opt(self):
return ['-O4']