diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-19 01:14:21 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-07-19 01:14:21 +0300 |
commit | 7814ef986fc0413630a7a6b7dbc169fc2ce39b03 (patch) | |
tree | 958e8e63592756e469b356b49ad3b81245779cfc /environment.py | |
parent | 09c24654a69a737f7079befe251ba0a89932035d (diff) | |
download | meson-7814ef986fc0413630a7a6b7dbc169fc2ce39b03.zip meson-7814ef986fc0413630a7a6b7dbc169fc2ce39b03.tar.gz meson-7814ef986fc0413630a7a6b7dbc169fc2ce39b03.tar.bz2 |
Set up link paths.
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/environment.py b/environment.py index 07c1c28..4c6a36a 100644 --- a/environment.py +++ b/environment.py @@ -468,6 +468,9 @@ class MonoCompiler(): def get_linker_always_args(self): return [] + def get_link_args(self, fname): + return ['-r:' + fname] + def get_soname_args(self, shlib_name, path): return [] |