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 dc7446dd1..b9862d1c2 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -54,6 +54,9 @@ mkdir -p AppDir/usr/optional/libgcc_s | |||
| 54 | # Deploy yuzu's needed dependencies | 54 | # Deploy yuzu's needed dependencies |
| 55 | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt | 55 | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt |
| 56 | 56 | ||
| 57 | # Workaround for libQt5MultimediaGstTools indirectly requiring libwayland-client and breaking Vulkan usage on end-user systems | ||
| 58 | find AppDir -type f -regex '.*libwayland-client\.so.*' -delete -print | ||
| 59 | |||
| 57 | # Workaround for building yuzu with GCC 10 but also trying to distribute it to Ubuntu 18.04 et al. | 60 | # Workaround for building yuzu with GCC 10 but also trying to distribute it to Ubuntu 18.04 et al. |
| 58 | # See https://github.com/darealshinji/AppImageKit-checkrt | 61 | # See https://github.com/darealshinji/AppImageKit-checkrt |
| 59 | cp exec-x86_64.so AppDir/usr/optional/exec.so | 62 | cp exec-x86_64.so AppDir/usr/optional/exec.so |