diff options
author | Andrei Alexeyev <akari@taisei-project.org> | 2020-05-07 04:43:36 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-05-08 22:29:05 +0300 |
commit | 9492eec55fb8a3dc8c5cc11182621e98d15e8729 (patch) | |
tree | cdb2fb68010a633a131c7a4e49b84f37fa67448e /mesonbuild | |
parent | 7e1529501883ce8741d8689c150f589ab68a814f (diff) | |
download | meson-9492eec55fb8a3dc8c5cc11182621e98d15e8729.zip meson-9492eec55fb8a3dc8c5cc11182621e98d15e8729.tar.gz meson-9492eec55fb8a3dc8c5cc11182621e98d15e8729.tar.bz2 |
Do not pass rpath flags to wasm-ld
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/linkers.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index 44c720f..db735e7 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -761,6 +761,11 @@ class WASMDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, Dyna def get_asneeded_args(self) -> T.List[str]: return [] + def build_rpath_args(self, env: 'Environment', build_dir: str, from_dir: str, + rpath_paths: str, build_rpath: str, + install_rpath: str) -> T.List[str]: + return [] + class CcrxDynamicLinker(DynamicLinker): |