From cf947ede5daeebb48ee74f0dfe902524b81bae0d Mon Sep 17 00:00:00 2001 From: harshitghagre Date: Wed, 12 Mar 2025 11:23:54 +0530 Subject: [PATCH] Added installation instructions for Alpine Linux, Clear Linux, and Solus --- contributors/devel/development.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/contributors/devel/development.md b/contributors/devel/development.md index 8878a5e1742..5835b74055f 100644 --- a/contributors/devel/development.md +++ b/contributors/devel/development.md @@ -208,6 +208,29 @@ distributions and commands used to install these tools are below. ```sh sudo pacman -Sy base-devel ``` +- Alpine Linux + + ```sh + sudo apk update + sudo apk add build-base +``` + +- Clear Linux + + ```sh + sudo swupd update + sudo swupd bundle-add c-basic dev-utils +``` + +- Solus + + ```sh + sudo eopkg update-repo + sudo eopkg install -c system.devel + + ``` + + Once you have finished, confirm that `gcc` and `make` are installed.