summaryrefslogtreecommitdiff
path: root/scipy_distutils/laheyfcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-02-11 20:04:39 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-02-11 20:04:39 +0000
commitba685a615e597b3070ba54dc9771d44277e886d2 (patch)
tree0ab46d7dde74ccb4fc61deb2f084e7108d52f3c0 /scipy_distutils/laheyfcompiler.py
parentd98f6378a0bb5843984e24668815e8820a6de62d (diff)
downloadnumpy-ba685a615e597b3070ba54dc9771d44277e886d2.tar.gz
Using ext.language to find correct linker. Fixed doubles libraries in linking command.
Diffstat (limited to 'scipy_distutils/laheyfcompiler.py')
-rw-r--r--scipy_distutils/laheyfcompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy_distutils/laheyfcompiler.py b/scipy_distutils/laheyfcompiler.py
index 228eb9206..e097e66d0 100644
--- a/scipy_distutils/laheyfcompiler.py
+++ b/scipy_distutils/laheyfcompiler.py
@@ -27,13 +27,13 @@ class LaheyFCompiler(FCompiler):
def get_flags_debug(self):
return ['-g','--chk','--chkglobal']
def get_library_dirs(self):
- opt = FCompiler.get_library_dirs(self)
+ opt = []
d = os.environ.get('LAHEY')
if d:
opt.append(os.path.join(d,'lib'))
return opt
def get_libraries(self):
- opt = FCompiler.get_libraries(self)
+ opt = []
opt.extend(['fj9f6', 'fj9i6', 'fj9ipp', 'fj9e6'])
return opt