summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/pg.py
diff options
context:
space:
mode:
authorpierregm <pierregmcode@gmail.com>2010-10-11 23:02:10 +0200
committerpierregm <pierregmcode@gmail.com>2010-10-11 23:02:10 +0200
commita14dd542532d383610c1b01c5698b137dd058fea (patch)
tree036f0452ee16fe1b9b74c13e6ad9bb9155310256 /numpy/distutils/fcompiler/pg.py
parent61d945bdb5c9b2b3329e1b8468b5c7d0596dd9fc (diff)
parent11ee694744f2552d77652ed929fdc2b4ccca6843 (diff)
downloadnumpy-a14dd542532d383610c1b01c5698b137dd058fea.tar.gz
merging refs/remotes/origin/master into HEAD
Diffstat (limited to 'numpy/distutils/fcompiler/pg.py')
-rw-r--r--numpy/distutils/fcompiler/pg.py23
1 files changed, 21 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/pg.py b/numpy/distutils/fcompiler/pg.py
index 60c7f4e4b..a34669c36 100644
--- a/numpy/distutils/fcompiler/pg.py
+++ b/numpy/distutils/fcompiler/pg.py
@@ -2,6 +2,7 @@
# http://www.pgroup.com
from numpy.distutils.fcompiler import FCompiler
+from sys import platform
compilers = ['PGroupFCompiler']
@@ -11,7 +12,19 @@ class PGroupFCompiler(FCompiler):
description = 'Portland Group Fortran Compiler'
version_pattern = r'\s*pg(f77|f90|hpf) (?P<version>[\d.-]+).*'
- executables = {
+ if platform == 'darwin':
+ executables = {
+ 'version_cmd' : ["<F77>", "-V 2>/dev/null"],
+ 'compiler_f77' : ["pgf77", "-dynamiclib"],
+ 'compiler_fix' : ["pgf90", "-Mfixed", "-dynamiclib"],
+ 'compiler_f90' : ["pgf90", "-dynamiclib"],
+ 'linker_so' : ["libtool"],
+ 'archiver' : ["ar", "-cr"],
+ 'ranlib' : ["ranlib"]
+ }
+ pic_flags = ['']
+ else:
+ executables = {
'version_cmd' : ["<F77>", "-V 2>/dev/null"],
'compiler_f77' : ["pgf77"],
'compiler_fix' : ["pgf90", "-Mfixed"],
@@ -20,7 +33,9 @@ class PGroupFCompiler(FCompiler):
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"]
}
- pic_flags = ['-fpic']
+ pic_flags = ['-fpic']
+
+
module_dir_switch = '-module '
module_include_switch = '-I'
@@ -31,6 +46,10 @@ class PGroupFCompiler(FCompiler):
return ['-fast']
def get_flags_debug(self):
return ['-g']
+
+ if platform == 'darwin':
+ def get_flags_linker_so(self):
+ return ["-dynamic", '-undefined', 'dynamic_lookup']
if __name__ == '__main__':
from distutils import log