Skip to content
Snippets Groups Projects
Forked from card10 / firmware
2 commits ahead of the upstream repository.
bootstrap.sh 820 B
#!/bin/sh
set -xe

cd "$(dirname "$0")"
test -d build/ && rm -r build/

# Get external libs (MicroPython, tiny-AES-c, SHA256)
git submodule deinit --all
git submodule update --init ./lib
meson setup --cross-file card10-cross.ini build/ "$@"

set +x

echo "---------------------------------------------------------------"
echo "   Build configured successfully!"
echo "---------------------------------------------------------------"
echo "   You can now start building using"
echo "       ninja -C build/"
echo ""
echo "   The path after -C is the path to the build-directory."
echo "   Suppose you are in 'hw-tests/hello-world/', you could"
echo "   then run 'ninja -C ../../build/'"
echo ""
echo "   You can also build a single target.  For example:"
echo "       ninja -C build/ hw-tests/hello-world/hello-world.elf"