diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-18 08:27:30 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-18 08:27:30 +0000 |
commit | f8721a7c4a8bcaa47622be6e49d589da9b0ff5d5 (patch) | |
tree | cfc2cf8c4aac6a0ba30819f1a61f2caccb4f94b1 /scipy_distutils/nagfcompiler.py | |
parent | e252edd12120404b9ef8e9334c4b5659ed6d2726 (diff) | |
download | numpy-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.py | 2 |
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'] |