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
Same as 5655e63, but the excluded
libwayland-client.so.0 made its way back in the second call to
linuxdeployqt, so the issue fixed in the original commit was still
present when using the AppImage.
Copy file name to clipboardExpand all lines: frontends/qt/Makefile
+12-9Lines changed: 12 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,15 @@
14
14
15
15
include ../../env.mk.inc
16
16
17
+
# Add Wayland libs so the app can run natively on Wayland too.
18
+
# The linuxdeployqt maintainer unfortunately refuses to support it automatically: https://github.com/probonopd/linuxdeployqt/issues/189
19
+
# The list of related plugins was found by: `find $(qmake -query QT_INSTALL_PLUGINS) | grep wayland`
20
+
#
21
+
# Exclude libwayland-client.so.0, see https://github.com/AppImageCommunity/pkg2appimage/commit/15a64c20dc23a0154622ba25829364323903b6b5,
22
+
# but that is yet in the default exclusion lib of linuxdeployqt.
23
+
# 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.
24
+
EXCLUDE_LIBS:=libwayland-client.so.0
25
+
17
26
base:
18
27
mkdir build
19
28
./genassets.sh
@@ -30,20 +39,13 @@ linux:
30
39
mv build/BitBox build/linux-tmp
31
40
cp build/assets.rcc build/linux-tmp/
32
41
cp server/libserver.so build/linux-tmp
33
-
# Add Wayland libs so the app can run natively on Wayland too.
34
-
# The linuxdeployqt maintainer unfortunately refuses to support it automatically: https://github.com/probonopd/linuxdeployqt/issues/189
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.
0 commit comments