summaryrefslogtreecommitdiff
path: root/scipy_distutils/pgfcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-01-31 22:02:30 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-01-31 22:02:30 +0000
commit271fc73f95abab3a7962169cb54c1ba1ddba50e1 (patch)
tree1706a106c346be104465e157bc7d55dabb808555 /scipy_distutils/pgfcompiler.py
parent85ac6be83d87d902fc1dad3e00752fcd6c7ccd7d (diff)
downloadnumpy-271fc73f95abab3a7962169cb54c1ba1ddba50e1.tar.gz
fcompiler classes
Diffstat (limited to 'scipy_distutils/pgfcompiler.py')
-rw-r--r--scipy_distutils/pgfcompiler.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/scipy_distutils/pgfcompiler.py b/scipy_distutils/pgfcompiler.py
index 0a297335b..68480482f 100644
--- a/scipy_distutils/pgfcompiler.py
+++ b/scipy_distutils/pgfcompiler.py
@@ -21,11 +21,13 @@ class PGroupFCompiler(FCompiler):
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"]
}
+ pic_flags = ['-fpic']
+ module_dir_switch = '-module '
+ module_include_switch = '-I'
def get_flags(self):
opt = ['-Minform=inform','-Mnosecond_underscore']
- opt.append('-fpic')
- return opt
+ return self.pic_flags + opt
def get_flags_opt(self):
return ['-fast']
def get_flags_debug(self):