Create BUILD_DEBIAN-BOOKWORM_ARM64.md

Add build instructions for ARM64
This commit is contained in:
Hitokun 2024-12-30 17:15:04 -06:00 committed by GitHub
parent fafc6b28c0
commit 0a1e0b6c1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,11 @@
# Building Starship
These build instructions are based on the upstream repository via their [GitHub Actions Workflow](https://github.com/HarbourMasters/Starship/blob/main/.github/workflows/linux.yml) and [build instructions](https://github.com/HarbourMasters/Starship/blob/main/docs/BUILDING.md).
## Build Starship
```
git clone --recursive https://github.com/HarbourMasters/starship.git && cd starship
git checkout tags/vx.x.x
cmake -H. -Bbuild-cmake -GNinja -DUSE_OPENGLES=1 -DBUILD_CROWD_CONTROL=0 -DCMAKE_BUILD_TYPE=Release
cmake --build build-cmake --config Release --target GeneratePortOTR
cmake --build build-cmake
```