Skip to content

Commit 049de6f

Browse files
authored
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
1 parent 80f15e0 commit 049de6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/validation-jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
sudo apt-get update;
7272
DEBIAN_FRONTEND=noninteractive sudo apt-get install --no-install-recommends -yq \
73-
libasound2-dev libudev-dev;
73+
libasound2-dev libudev-dev libxkbcommon-x11-0;
7474
- name: install xvfb, llvmpipe and lavapipe
7575
run: |
7676
sudo apt-get update -y -qq

docs/linux_dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ If you don't see your distro present in the list, feel free to add the instructi
77
## [Ubuntu](https://ubuntu.com/)
88

99
```bash
10-
sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev
10+
sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
1111
```
1212

1313
if using Wayland, you will also need to install

0 commit comments

Comments
 (0)