1
0
mirror of https://github.com/taigrr/gopher-os synced 2025-01-18 04:43:13 -08:00

vagrantfile: include gcc and binutils in the list of installed packages

This commit is contained in:
Achilleas Anagnostopoulos 2017-09-24 10:06:35 +01:00
parent 52be87b67f
commit 41d245d331

2
Vagrantfile vendored
View File

@ -17,7 +17,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y nasm make xorriso
apt-get install -y nasm make xorriso binutils gcc
[ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar xz -C /usr/local
mkdir -p /home/vagrant/go/src
mkdir -p /home/vagrant/go/bin