:-'Generic Commit'

This commit is contained in:
Your Name
2025-05-28 15:59:21 +12:00
parent 5c919e1146
commit 26a7e2da1b
50 changed files with 0 additions and 0 deletions

17
dropshell-build/install_host.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
set -euo pipefail
sudo apt install -y nlohmann-json3-dev wget curl cmake ninja-build mold
if [ ! -f /usr/local/lib/libassert.a ]; then
git clone https://github.com/jeremy-rifkin/libassert.git
git checkout v2.1.5
mkdir libassert/build
cd "libassert/build" || exit 1
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
sudo make install
cd ../..
rm -rf libassert
fi