diff options
author | cookedm <cookedm@localhost> | 2007-04-04 18:10:30 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-04-04 18:10:30 +0000 |
commit | 07c0893279de1e0b59d3381de36b52efce0dd719 (patch) | |
tree | 84a43fa7a2029655e19d18fcbaaf6245a69dbb6e /numpy/distutils/fcompiler/ibm.py | |
parent | 2207b5a9967a1396843d24a1f3f9e95ca127d83e (diff) | |
download | numpy-07c0893279de1e0b59d3381de36b52efce0dd719.tar.gz |
Really fix linking with Fortran on AIX
Diffstat (limited to 'numpy/distutils/fcompiler/ibm.py')
-rw-r--r-- | numpy/distutils/fcompiler/ibm.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/numpy/distutils/fcompiler/ibm.py b/numpy/distutils/fcompiler/ibm.py index 04a18f522..e4e2cec32 100644 --- a/numpy/distutils/fcompiler/ibm.py +++ b/numpy/distutils/fcompiler/ibm.py @@ -49,15 +49,6 @@ class IbmFCompiler(FCompiler): self.version = version = LooseVersion(l[0]) return version - def get_linker_so(self): - if sys.platform.startswith('aix'): - python_lib = get_python_lib(standard_lib=1) - ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix') - python_exp = os.path.join(python_lib, 'config', 'python.exp') - return [ld_so_aix, self.executables['linker_so'], python_exp] - else: - return FCompiler.get_linker_so(self) - def get_flags(self): return ['-qextname'] |