This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
usage() { | |
echo "Usage: $0 [options]" | |
echo "Options:" | |
echo " --manual-build Run the build process manually without automatic tools." | |
echo " --x64-build Perform an x64 build (default)." | |
echo " --arm64-build Perform an ARM64 cross-compile build." |