Winfried Dobbe

Results 31 comments of Winfried Dobbe

Sorry, I noticed that the Conan Qt recipe also maintains only 5.15 so I added the patch to all 5.15.x patch releases even though I tested it only for 5.15.11.

_Update: disregard comment below, was caused because CMAKE_SYSTEM_PROCESSOR was set to 'arm' in the cmake toolchain file and not recognised by the cpuinfo library. After changing it to 'armv7a' the...

> A way to work around this could be: > > * Add an extra machine file to override the `sys_root` Meson property: > > > ```shell > $ conan...

Hi @memsharded While trying to add cross-compile support for the Qt6 CCI recipe I ran into the same problem as reported in this issue: for all dependencies that use meson...

If anyone encounters the same problem: cause was that the toolchain I used exported environment variable `PKG_CONFIG_SYSROOT_DIR`. This causes pkg-config to prepend the sys-root path to any include path. After...

Hi @memsharded , I applied the fix from PR #19229 in my local conan 2.22.2 installation (file conan/tools/meson/toolchain.py). However cross-compilation of for example freetype still fails because the toolchain sysroot...

PS: I also had to patch the libselinux conan recipe because file libselinux-3.6/Makefile does: `PCRE_CFLAGS += $(shell $(PKG_CONFIG) --cflags $(PCRE_MODULE))` which results in: `-I/home/wdobbe/.conan2/p/b/swpt_cc1009408cc25/p/sysroots/armv5e-poky-linux-gnueabi/home/wdobbe/.conan2/p/b/pcre2ef98e3884232e/p/include -DPCRE2_STATIC -I/home/wdobbe/.conan2/p/b/swpt_cc1009408cc25/p/sysroots/armv5e-poky-linux-gnueabi/home/wdobbe/.conan2/p/b/zlibc91ce6c5cb5de/p/include -I/home/wdobbe/.conan2/p/b/swpt_cc1009408cc25/p/sysroots/armv5e-poky-linux-gnueabi/home/wdobbe/.conan2/p/b/bzip2b48278f578efd/p/include ` Issue #15795...

In order to cross-compile all dependencies for qt/6.7.3 I had to patch the following Conan recipes: - freetype - fontconfig - glib - harfbuzz - libselinux For the packages that...

If you set environment variable PKG_CONFIG_FDO_SYSROOT_RULES=1 before invoking pkgconf it seems to return the correct path regardless whether PKG_CONFIG_SYSROOT_DIR is set or not. Next week I'll try if setting that...

Currently many packages in CCI including Qt (tool_)require pkgconf/2.1.0 or even older versions. When I used pkgconf/2.5.1 all my cross-compiling issues disappeared and I could finally cross-compile Qt (although not...