Skip to content

Commit

Permalink
add libxkbcommon-x11-0 to the default linux dependencies (#11060)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
mockersf authored Dec 21, 2023
1 parent 80f15e0 commit 049de6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validation-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/linux_dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 049de6f

Please sign in to comment.