mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Add Solus package requrements to linux_dependencies.md (#10996)
Packages are all available but follow a different naming convention on [Solus OS](https://getsol.us/). This change will help people develop with bevy on Solus. # Objective Update documentation with install instructions on Solus ## Solution Updated documentation
This commit is contained in:
parent
63d17e8494
commit
f12e90670a
1 changed files with 15 additions and 0 deletions
|
@ -190,3 +190,18 @@ If you have issues with `winit` such as `Failed to initialize backend!` or simil
|
|||
[build]
|
||||
rustflags = ["-C", "target-feature=-crt-static"]
|
||||
```
|
||||
|
||||
## [Solus](https://getsol.us)
|
||||
|
||||
```sh
|
||||
sudo eopkg it -c system.devel
|
||||
sudo eopkg it g++ libx11-devel alsa-lib-devel
|
||||
```
|
||||
|
||||
If using Wayland, you may also need to install
|
||||
|
||||
```sh
|
||||
sudo eopkg it wayland-devel libxkbcommon-devel
|
||||
```
|
||||
|
||||
Compiling with clang is also possible - replace the `g++` package with `llvm-clang`
|
||||
|
|
Loading…
Reference in a new issue