mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
add libxkbcommon-x11-0 to the default linux dependencies (#11060)
# Objective - After #10702, it seems `libxkbcommon-x11-0` is now a default dependency ``` 2023-12-21T14:13:14.876926Z INFO log: Failed loading `libxkbcommon-x11.so.0`. Error: CantOpen(DlOpen { desc: "libxkbcommon-x11.so.0: cannot open shared object file: No such file or directory" }) ``` ## Solution - Add the new dependency on linux
This commit is contained in:
parent
80f15e0dbb
commit
049de6fcbe
2 changed files with 2 additions and 2 deletions
2
.github/workflows/validation-jobs.yml
vendored
2
.github/workflows/validation-jobs.yml
vendored
|
@ -70,7 +70,7 @@ jobs:
|
|||
run: |
|
||||
sudo apt-get update;
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install --no-install-recommends -yq \
|
||||
libasound2-dev libudev-dev;
|
||||
libasound2-dev libudev-dev libxkbcommon-x11-0;
|
||||
- name: install xvfb, llvmpipe and lavapipe
|
||||
run: |
|
||||
sudo apt-get update -y -qq
|
||||
|
|
|
@ -7,7 +7,7 @@ If you don't see your distro present in the list, feel free to add the instructi
|
|||
## [Ubuntu](https://ubuntu.com/)
|
||||
|
||||
```bash
|
||||
sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev
|
||||
sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
|
||||
```
|
||||
|
||||
if using Wayland, you will also need to install
|
||||
|
|
Loading…
Reference in a new issue