diff options
Diffstat (limited to 'scipy_distutils/hpuxfcompiler.py')
-rw-r--r-- | scipy_distutils/hpuxfcompiler.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scipy_distutils/hpuxfcompiler.py b/scipy_distutils/hpuxfcompiler.py index 60682a81e..5a792030d 100644 --- a/scipy_distutils/hpuxfcompiler.py +++ b/scipy_distutils/hpuxfcompiler.py @@ -18,9 +18,11 @@ class HPUXFCompiler(FCompiler): 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"] } - + module_dir_switch = None #XXX: fix me + module_include_switch = None #XXX: fix me + pic_flags = ['+pic=long'] def get_flags(self): - return ['+pic=long','+ppu'] + return self.pic_flags + ['+ppu'] def get_flags_opt(self): return ['-O3'] def get_libraries(self): |