diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-01-31 22:02:30 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-01-31 22:02:30 +0000 |
commit | 271fc73f95abab3a7962169cb54c1ba1ddba50e1 (patch) | |
tree | 1706a106c346be104465e157bc7d55dabb808555 /scipy_distutils/compaqfcompiler.py | |
parent | 85ac6be83d87d902fc1dad3e00752fcd6c7ccd7d (diff) | |
download | numpy-271fc73f95abab3a7962169cb54c1ba1ddba50e1.tar.gz |
fcompiler classes
Diffstat (limited to 'scipy_distutils/compaqfcompiler.py')
-rw-r--r-- | scipy_distutils/compaqfcompiler.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scipy_distutils/compaqfcompiler.py b/scipy_distutils/compaqfcompiler.py index c80574a75..d0c029835 100644 --- a/scipy_distutils/compaqfcompiler.py +++ b/scipy_distutils/compaqfcompiler.py @@ -27,6 +27,9 @@ class CompaqFCompiler(FCompiler): 'ranlib' : ["ranlib"] } + module_dir_switch = None #XXX Fix me + module_include_switch = None #XXX Fix me + def get_flags(self): return ['-assume no2underscore','-nomixed_str_len_arg'] def get_flags_debug(self): @@ -49,9 +52,12 @@ class CompaqVisualFCompiler(FCompiler): compile_switch = '/c ' object_switch = '/object:' + library_switch = '/OUT:' #No space after /OUT:! static_lib_extension = ".lib" static_lib_format = "%s%s" + module_dir_switch = None #XXX Fix me + module_include_switch = None #XXX Fix me ar_exe = 'lib.exe' fc_exe = 'DF' |