mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
* nanopb 0.4.6.4 with PB_C99_STATIC_ASSERT to avoid depending on C11 * OpenSSL 1.1.1q on windows * Switched from docker to podman in CI * Appdir in appimage build container is now in /build/appdir to fix "Invalid cross-device link" errors in linuxdeploy when appdir is in mount * Use python protobuf==3.19.5 in bionic image, which still supports python 3.6, and on windows where nanopb otherwise has issues * Purge nanopb_pb2.py to force regeneration of it for possibly different python protobuf versions in subsequent builds * FreeBSD needs py39 packages now
40 lines
817 B
Bash
Executable File
40 lines
817 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xveo pipefail
|
|
|
|
arg1=$1
|
|
build="./build"
|
|
if [ "$arg1" != "linux" ]; then
|
|
toolchain="cmake/switch.cmake"
|
|
build="./build_switch"
|
|
fi
|
|
|
|
SCRIPTDIR=$(dirname "$0")
|
|
BASEDIR=$(realpath "${SCRIPTDIR}/../../")
|
|
|
|
build_chiaki (){
|
|
pushd "${BASEDIR}"
|
|
#rm -rf ./build
|
|
|
|
# purge leftover proto/nanopb_pb2.py which may have been created with another protobuf version
|
|
rm -fv third-party/nanopb/generator/proto/nanopb_pb2.py
|
|
|
|
cmake -B "${build}" \
|
|
-GNinja \
|
|
-DCMAKE_TOOLCHAIN_FILE=${toolchain} \
|
|
-DCHIAKI_ENABLE_TESTS=OFF \
|
|
-DCHIAKI_ENABLE_CLI=OFF \
|
|
-DCHIAKI_ENABLE_GUI=OFF \
|
|
-DCHIAKI_ENABLE_ANDROID=OFF \
|
|
-DCHIAKI_ENABLE_BOREALIS=ON \
|
|
-DCHIAKI_LIB_ENABLE_MBEDTLS=ON \
|
|
# -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
|
|
# -DCMAKE_FIND_DEBUG_MODE=ON
|
|
|
|
ninja -C "${build}"
|
|
popd
|
|
}
|
|
|
|
build_chiaki
|
|
|