14 lines
495 B
Bash
Executable File
14 lines
495 B
Bash
Executable File
#!/bin/bash
|
|
# @todo Check if all the required programs are installed
|
|
|
|
wget https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v9.2.1-1.1/xpack-arm-none-eabi-gcc-9.2.1-1.1-linux-x64.tar.gz -O arm-none-eabi-gcc.tar.gz
|
|
tar xvf arm-none-eabi-gcc.tar.gz
|
|
mv xpack-arm-none-eabi-gcc-9.2.1-1.1 arm-none-eabi-gcc
|
|
rm arm-none-eabi-gcc.tar.gz
|
|
|
|
svn checkout svn://svn.code.sf.net/p/sdcc/code/trunk sdcc-code
|
|
|
|
python -m venv env
|
|
source env/bin/activate
|
|
pip install pyserial imageio
|