diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-11 20:04:39 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-11 20:04:39 +0000 |
commit | ba685a615e597b3070ba54dc9771d44277e886d2 (patch) | |
tree | 0ab46d7dde74ccb4fc61deb2f084e7108d52f3c0 /scipy_distutils/sunfcompiler.py | |
parent | d98f6378a0bb5843984e24668815e8820a6de62d (diff) | |
download | numpy-ba685a615e597b3070ba54dc9771d44277e886d2.tar.gz |
Using ext.language to find correct linker. Fixed doubles libraries in linking command.
Diffstat (limited to 'scipy_distutils/sunfcompiler.py')
-rw-r--r-- | scipy_distutils/sunfcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/sunfcompiler.py b/scipy_distutils/sunfcompiler.py index 77e78a5f3..96e011fd1 100644 --- a/scipy_distutils/sunfcompiler.py +++ b/scipy_distutils/sunfcompiler.py @@ -27,7 +27,7 @@ class SunFCompiler(FCompiler): def get_arch(self): return ['-xtarget=generic'] def get_libraries(self): - opt = FCompiler.get_libraries(self) + opt = [] opt.extend(['fsu','sunmath','mvec','f77compat']) return opt |