We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee7bbb commit fce1420Copy full SHA for fce1420
conan/tools/meson/meson.py
@@ -37,6 +37,9 @@ def configure(self, reconfigure=False):
37
default=[], check_type=list)
38
cmd = "meson setup "
39
if is_cross_build:
40
+ #Do not let pkgconf prefix sysroot path in front of paths to Conan packages (that are
41
+ #outside the toolchain sysroot).
42
+ os.environ['PKG_CONFIG_FDO_SYSROOT_RULES'] = "1"
43
machine_files.insert(0, cross)
44
cmd += " ".join([f'--cross-file "{file}"' for file in machine_files])
45
if os.path.exists(native):
0 commit comments