diff options
| -rwxr-xr-x | .ci/scripts/linux/docker.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index 436155b3d..7f3ea3860 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -51,6 +51,9 @@ mkdir -p AppDir/usr/optional/libgcc_s | |||
| 51 | # Deploy yuzu's needed dependencies | 51 | # Deploy yuzu's needed dependencies |
| 52 | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt | 52 | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt |
| 53 | 53 | ||
| 54 | # Workaround for libQt5MultimediaGstTools indirectly requiring libwayland-client and breaking Vulkan usage on end-user systems | ||
| 55 | find AppDir -type f -regex '.*libwayland-client\.so.*' -delete -print | ||
| 56 | |||
| 54 | # Workaround for building yuzu with GCC 10 but also trying to distribute it to Ubuntu 18.04 et al. | 57 | # Workaround for building yuzu with GCC 10 but also trying to distribute it to Ubuntu 18.04 et al. |
| 55 | # See https://github.com/darealshinji/AppImageKit-checkrt | 58 | # See https://github.com/darealshinji/AppImageKit-checkrt |
| 56 | cp exec-x86_64.so AppDir/usr/optional/exec.so | 59 | cp exec-x86_64.so AppDir/usr/optional/exec.so |