diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-04-24 22:11:34 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-04-24 22:11:34 -0400 |
commit | a8b1c0c6d10e1939d9001a52a962ecd6ef06500c (patch) | |
tree | 88cc2cd665ce9fbff145ea6db018d6b5a272be4e /numpy/distutils/fcompiler/pg.py | |
parent | 77c20d88ddb50c3d63ebf49324152ca6f07e0ce2 (diff) | |
parent | 525f0cd85fa270ee0fb843a8cfdd21dfe98238cd (diff) | |
download | numpy-a8b1c0c6d10e1939d9001a52a962ecd6ef06500c.tar.gz |
Merge pull request #5597 from zerothi/ENH-distutils
BLD, ENH: Reading of extra flags from site.cfg to extend flexibility
Diffstat (limited to 'numpy/distutils/fcompiler/pg.py')
-rw-r--r-- | numpy/distutils/fcompiler/pg.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/fcompiler/pg.py b/numpy/distutils/fcompiler/pg.py index f3f5ea22b..ee357c6d0 100644 --- a/numpy/distutils/fcompiler/pg.py +++ b/numpy/distutils/fcompiler/pg.py @@ -51,6 +51,9 @@ class PGroupFCompiler(FCompiler): def get_flags_linker_so(self): return ["-dynamic", '-undefined', 'dynamic_lookup'] + def runtime_library_dir_option(self, dir): + return '-R"%s"' % dir + if __name__ == '__main__': from distutils import log log.set_verbosity(2) |