|
|
|
@ -1546,7 +1546,7 @@ class MonoCompiler(Compiler): |
|
|
|
|
def split_shlib_to_parts(self, fname): |
|
|
|
|
return None, fname |
|
|
|
|
|
|
|
|
|
def build_rpath_args(self, build_dir, rpath_paths, install_rpath): |
|
|
|
|
def build_rpath_args(self, build_dir, from_dir, rpath_paths, install_rpath): |
|
|
|
|
return [] |
|
|
|
|
|
|
|
|
|
def get_dependency_gen_args(self, outtarget, outfile): |
|
|
|
@ -1627,7 +1627,7 @@ class JavaCompiler(Compiler): |
|
|
|
|
def split_shlib_to_parts(self, fname): |
|
|
|
|
return None, fname |
|
|
|
|
|
|
|
|
|
def build_rpath_args(self, build_dir, rpath_paths, install_rpath): |
|
|
|
|
def build_rpath_args(self, build_dir, from_dir, rpath_paths, install_rpath): |
|
|
|
|
return [] |
|
|
|
|
|
|
|
|
|
def get_dependency_gen_args(self, outtarget, outfile): |
|
|
|
@ -1809,8 +1809,8 @@ class RustCompiler(Compiler): |
|
|
|
|
def get_buildtype_args(self, buildtype): |
|
|
|
|
return rust_buildtype_args[buildtype] |
|
|
|
|
|
|
|
|
|
def build_rpath_args(self, build_dir, rpath_paths, install_rpath): |
|
|
|
|
return build_unix_rpath_args(build_dir, rpath_paths, install_rpath) |
|
|
|
|
def build_rpath_args(self, build_dir, from_dir, rpath_paths, install_rpath): |
|
|
|
|
return self.build_unix_rpath_args(build_dir, from_dir, rpath_paths, install_rpath) |
|
|
|
|
|
|
|
|
|
def get_sysroot(self): |
|
|
|
|
cmd = self.exelist + ['--print', 'sysroot'] |
|
|
|
|