8000 support rpath for GNU Fortran compiler. by fdiary · Pull Request #4996 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

support rpath for GNU Fortran compiler. #4996

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions numpy/distutils/fcompiler/gnu.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ def _c_arch_flags(self):
def get_flags_arch(self):
return []

def runtime_library_dir_option(self, dir):
return '-Wl,-rpath="%s"' % dir

class Gnu95FCompiler(GnuFCompiler):
compiler_type = 'gnu95'
compiler_aliases = ('gfortran',)
Expand Down
0