From 113412284131253ffa86c0d4c22fde77d84ecc6c Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Tue, 7 Mar 2023 14:34:09 -0800 Subject: [PATCH] Mention different set of packages required to rebuild for Raspberry Pi OS --- project/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/project/README.md b/project/README.md index b46585a17..6865cf671 100644 --- a/project/README.md +++ b/project/README.md @@ -19,6 +19,11 @@ This directory contains two categories of code. ```bash sudo apt install libgl1-mesa-dev libglu1-mesa-dev g++ g++-multilib gcc-multilib libasound2-dev libx11-dev libxext-dev libxi-dev libxrandr-dev libxinerama-dev libpulse-dev ``` +- Raspberry Pi OS requires a slightly different set of packages. + + ```bash + sudo apt install libgl1-mesa-dev libglu1-mesa-dev g++ libasound2-dev libx11-dev libxext-dev libxi-dev libxrandr-dev libxinerama-dev libpulse-dev libxcursor-dev libdbus-1-dev libdrm-dev libgbm-dev libudev-dev + ``` ### Rebuilding Use `lime rebuild ` to build or rebuild a set of binaries. Once finished, you can find them in the [ndll directory](https://github.com/openfl/lime/tree/develop/ndll).