From 0a1e0b6c1e062c91bf1f515de755d8cdce30a4b7 Mon Sep 17 00:00:00 2001 From: Hitokun Date: Mon, 30 Dec 2024 17:15:04 -0600 Subject: [PATCH] Create BUILD_DEBIAN-BOOKWORM_ARM64.md Add build instructions for ARM64 --- docs/BUILD_DEBIAN-BOOKWORM_ARM64.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/BUILD_DEBIAN-BOOKWORM_ARM64.md diff --git a/docs/BUILD_DEBIAN-BOOKWORM_ARM64.md b/docs/BUILD_DEBIAN-BOOKWORM_ARM64.md new file mode 100644 index 00000000..50d4116e --- /dev/null +++ b/docs/BUILD_DEBIAN-BOOKWORM_ARM64.md @@ -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 +```