diff options
author | Adam Duskett <Aduskett@gmail.com> | 2020-02-24 06:29:26 -0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-02-25 20:16:44 -0500 |
commit | f66b04b0996eae5cd7b0ad007435d5a51f28b691 (patch) | |
tree | a04b97197330d08bba68310acedf2e8d459eef41 | |
parent | 36b573822a0eb3384628d87663530b7e9ace8301 (diff) | |
download | meson-f66b04b0996eae5cd7b0ad007435d5a51f28b691.zip meson-f66b04b0996eae5cd7b0ad007435d5a51f28b691.tar.gz meson-f66b04b0996eae5cd7b0ad007435d5a51f28b691.tar.bz2 |
gobject-introspection: determine g-ir-scanner and g-ir-compiler paths from pkgconfig
Currently, meson hard codes the paths of these binaries which results in
cross-compiled environments to run the host versions of these tools.
However, GObject-introspection provides the appropriate paths to these
utilities via pkg-config
find_program is needed in the case g-i is built as a subproject. If
g-ir-scanner or g-ir-compiler are in the build or source directory use those.
If they aren't found in the source directory, use the results from pkg-config.
-rw-r--r-- | mesonbuild/modules/gnome.py | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 3d5d718..0ea4b27 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -736,15 +736,30 @@ class GnomeModule(ExtensionModule): if kwargs.get('install_dir'): raise MesonException('install_dir is not supported with generate_gir(), see "install_dir_gir" and "install_dir_typelib"') - giscanner = self.interpreter.find_program_impl('g-ir-scanner') - gicompiler = self.interpreter.find_program_impl('g-ir-compiler') - girtargets = [self._unwrap_gir_target(arg, state) for arg in args] if len(girtargets) > 1 and any([isinstance(el, build.Executable) for el in girtargets]): raise MesonException('generate_gir only accepts a single argument when one of the arguments is an executable') self.gir_dep, pkgargs = self._get_gir_dep(state) + # find_program is needed in the case g-i is built as subproject. + # In that case it uses override_find_program so the gobject utilities + # can be used from the build dir instead of from the system. + # However, GObject-introspection provides the appropriate paths to + # these utilities via pkg-config, so it would be best to use the + # results from pkg-config when possible. + gi_util_dirs_check = [state.environment.get_build_dir(), state.environment.get_source_dir()] + giscanner = self.interpreter.find_program_impl('g-ir-scanner') + if giscanner.found(): + giscanner_path = giscanner.get_command()[0] + if not any(x in giscanner_path for x in gi_util_dirs_check): + giscanner = self.gir_dep.get_pkgconfig_variable('g_ir_scanner', {}) + + gicompiler = self.interpreter.find_program_impl('g-ir-compiler') + if gicompiler.found(): + gicompiler_path = gicompiler.get_command()[0] + if not any(x in gicompiler_path for x in gi_util_dirs_check): + gicompiler = self.gir_dep.get_pkgconfig_variable('g_ir_compiler', {}) ns = kwargs.pop('namespace') nsversion = kwargs.pop('nsversion') |