diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2011-03-25 16:03:00 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2011-03-30 17:09:14 +0200 |
commit | 135e9418610241dc66ce3fefe25322d14a913954 (patch) | |
tree | bae52e7a9974ada6bada6f083aaa19189341ed8b /numpy/distutils/fcompiler | |
parent | a3889707c684bc3d4f885927c7d4692147be7e86 (diff) | |
download | numpy-135e9418610241dc66ce3fefe25322d14a913954.tar.gz |
BUG: distutils: update HP compiler flags. Closes #1377.
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/hpux.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/fcompiler/hpux.py b/numpy/distutils/fcompiler/hpux.py index a3db3493b..866920ee5 100644 --- a/numpy/distutils/fcompiler/hpux.py +++ b/numpy/distutils/fcompiler/hpux.py @@ -9,17 +9,17 @@ class HPUXFCompiler(FCompiler): version_pattern = r'HP F90 (?P<version>[^\s*,]*)' executables = { - 'version_cmd' : ["<F90>", "+version"], + 'version_cmd' : ["f90", "+version"], 'compiler_f77' : ["f90"], 'compiler_fix' : ["f90"], 'compiler_f90' : ["f90"], - 'linker_so' : None, + 'linker_so' : ["ld", "-b"], 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"] } module_dir_switch = None #XXX: fix me module_include_switch = None #XXX: fix me - pic_flags = ['+pic=long'] + pic_flags = ['+Z'] def get_flags(self): return self.pic_flags + ['+ppu', '+DD64'] def get_flags_opt(self): |