blob: 7180b95da5a929c25516192352df4ebd6f05199b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
echo "this installation script is untested, press Ctrl+C to exit, or wait 5 seconds to continue..."
sleep 5
# TODO: missing arm-none-eabi-newlib (manual install?)
brew install --cask \
make git \
gcc-arm-embedded \
stlink
|