From 4a635049878443721f9018d24eb0753c399b7882 Mon Sep 17 00:00:00 2001 From: Howard Huang Date: Fri, 21 Dec 2018 18:40:53 +0800 Subject: [PATCH] add install build-essential in Vagrantfile --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 1bb609c..f92f5cb 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,6 +17,7 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL apt-get update + apt-get install -y build-essential apt-get install -y nasm gccgo xorriso [ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz | tar xz -C /usr/local echo "export GOROOT=/usr/local/go" > /etc/profile.d/go.sh