8 lines
293 B
Bash
Executable File
8 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
apt-get install -y wget tar bzip2
|
|
wget "https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2"
|
|
tar -jxf ./*.tar.bz2
|
|
rm ./*.tar.bz2
|
|
echo "export PATH=\$PATH:/app/gcc-arm-none-eabi-10.3-2021.10/bin/" >> ~/.bashrc
|