From f12e90670a07a789eb2cbd4cf531d34c6fecb23c Mon Sep 17 00:00:00 2001 From: nelson Date: Sat, 16 Dec 2023 16:46:50 -0800 Subject: [PATCH] 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 --- docs/linux_dependencies.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/linux_dependencies.md b/docs/linux_dependencies.md index b123c9525f..6ee4ff0f0e 100644 --- a/docs/linux_dependencies.md +++ b/docs/linux_dependencies.md @@ -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`