You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes this crash:
```
BitBox: symbol lookup error: /lib/x86_64-linux-gnu/libEGL_mesa.so.0:
undefined symbol: wl_display_create_queue_with_name
```
which is likely caused by the target system having a newer version of
Mesa that is incompatible with the verison of libwayland-client.so.0
that we bundled.
Copy file name to clipboardexpand all lines: frontends/qt/Makefile
+8-3
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,15 @@ linux:
33
33
# Add Wayland libs so the app can run natively on Wayland too.
34
34
# The linuxdeployqt maintainer unfortunately refuses to support it automatically: https://github.com/probonopd/linuxdeployqt/issues/189
35
35
# The list of related plugins was found by: `find $(qmake -query QT_INSTALL_PLUGINS) | grep wayland`
36
+
#
37
+
# Exclude libwayland-client.so.0, see https://github.com/AppImageCommunity/pkg2appimage/commit/15a64c20dc23a0154622ba25829364323903b6b5,
38
+
# but that is yet in the default exclusion lib of linuxdeployqt.
39
+
# See also: https://github.com/probonopd/linuxdeployqt/issues/631 - we can remove the libwayland-client.so.0 exclusion once this is merged and we updated our linuxdeployqt binary.
36
40
cd build/linux-tmp && /opt/linuxdeployqt-continuous-x86_64.AppImage BitBox \
0 commit comments