Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ Vagrant.configure(2) do |config|

config.vm.provision "shell", privileged: false, inline: <<-SHELL
sudo locale-gen UTF-8
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
sudo apt-get update
sudo apt-get install -y cmake git gcc-arm-embedded=8-2018q4-major~trusty1
sudo apt update && sudo apt-get install -y cmake git
wget -O gcc.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2;
tar -xf gcc.tar.bz2
sudo rsync -a gcc-arm-none-eabi-8-2018-q4-major/ /usr/local/
SHELL

config.vm.provision "shell", run: "always", privileged: false, inline: <<-SHELL
Expand Down