mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
19 lines
541 B
Bash
Executable File
19 lines
541 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
./scripts/.ci_prepare_roms.sh
|
|
|
|
# Install toolchain
|
|
# curl -L -o toolchain.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-mac.tar.bz2?revision=48a4e09a-eb5a-4eb8-8b11-d65d7e6370ff&la=en&hash=8AACA5F787C5360D2C3C50647C52D44BCDA1F73F
|
|
|
|
# Faster mirror:
|
|
curl -L --http1.1 -o toolchain.tar.bz2 https://allg.one/7vMO
|
|
|
|
tar xf toolchain.tar.bz2
|
|
|
|
export GCC_PATH=$(pwd)/gcc-arm-none-eabi-10-2020-q4-major/bin
|
|
|
|
make -j8 download_sdk
|
|
|
|
make -j$(sysctl -n hw.logicalcpu)
|