Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sonic-visualiser: update to 5.2.1 #52406

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

newbluemoon
Copy link
Contributor

@newbluemoon newbluemoon commented Sep 29, 2024

Testing the changes

  • I tested the changes in this PR: briefly

Local build testing

  • I built this PR locally for my native architecture, (x86_64)
  • I built this PR locally for these architectures (if supported. mark crossbuilds):
    • aarch64 (cross)
    • armv7l (cross) --> fails on x86_64, succeedes on i686, see below
    • x86_64-musl
    • i686

There is a problem with 32-bit cross builds on a 64-bit host.
Meson detects Qt6 using pkg-config. However, the corresponding .pc files have

prefix=/usr
exec_prefix=${prefix}
bindir=${prefix}/lib32/qt6/bin
libexecdir=${prefix}/lib32/qt6/libexec
libdir=${prefix}/lib
includedir=${prefix}/include/qt6

i.e. they have .../lib32/... hard coded and so detection of the host tools fails when they are under .../lib64/....

There are not much options to tweak this; using qmake instead of pkg-config yields the same error.

I think a clean solution would be adjusting Qt6’s .pc files to contain .../lib/... solely. There shouldn’t be a problem, because lib32 and lib64 are symlinks to lib, anyway. Everything else I can think of would be quite hacky. I don’t know if this is the only package having this problem; I searched for other templates, but didn’t find anything alike.

Any ideas/suggestions are very welcome :)

@newbluemoon newbluemoon changed the title sonic-visualiser: update to 5.0 sonic-visualiser: update to 5.0.1 Oct 5, 2024
@newbluemoon newbluemoon force-pushed the sonic-visualiser branch 2 times, most recently from 2f9e642 to 0f6ff18 Compare December 25, 2024 09:28
@newbluemoon
Copy link
Contributor Author

Made a slight modification to the pkg-config-wrapper to find the qt6 tools when cross building on 64 bit host for 32 bit target:

diff --git a/common/hooks/pre-configure/02-script-wrapper.sh b/common/hooks/pre-configure/02-script-wrapper.sh
index 3d5d6c2ab3b..e2db9e400e9 100644
--- a/common/hooks/pre-configure/02-script-wrapper.sh
+++ b/common/hooks/pre-configure/02-script-wrapper.sh
@@ -103,7 +103,7 @@ pkgconfig_wrapper() {
 export PKG_CONFIG_SYSROOT_DIR="$XBPS_CROSS_BASE"
 export PKG_CONFIG_PATH="$XBPS_CROSS_BASE/usr/lib/pkgconfig:$XBPS_CROSS_BASE/usr/share/pkgconfig\${PKG_CONFIG_PATH:+:\${PKG_CONFIG_PATH}}"
 export PKG_CONFIG_LIBDIR="$XBPS_CROSS_BASE/usr/lib/pkgconfig\${PKG_CONFIG_LIBDIR:+:\${PKG_CONFIG_LIBDIR}}"
-exec /usr/bin/pkg-config "\$@"
+exec /usr/bin/pkg-config "\$@" | sed s/lib32/lib/g
 _EOF
 	chmod 755 ${XBPS_WRAPPERDIR}/${XBPS_CROSS_TRIPLET}-pkg-config
 	if [ -z "$no_generic_pkgconfig_link" ]; then

This is the smallest change I could come up with that makes it work, but maybe there's a better solution?

@newbluemoon newbluemoon changed the title sonic-visualiser: update to 5.0.1 sonic-visualiser: update to 5.2 Mar 9, 2025
instead of lib32

cf. void-linux#52402, make 32-bit cross builds find qt-host-tools on a 64-bit host

.pc files contain lib32 hardcoded, lib is a symlink to the corresponding
lib{32,64} anyway, so let the wrapper look under lib
@newbluemoon newbluemoon changed the title sonic-visualiser: update to 5.2 sonic-visualiser: update to 5.2.1 Mar 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant