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

Switch to xenial vagrant box for updated binutils

We need binutils 2.26+ so objcopy supports the "--add-symbol" option
This commit is contained in:
Achilleas Anagnostopoulos 2017-03-29 07:42:38 +01:00 committed by GitHub
parent 08142d90f6
commit 8770634fd2

3
Vagrantfile vendored
View File

@ -8,9 +8,10 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--usb", "on"]
vb.customize ["modifyvm", :id, "--usbehci", "off"]
vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
end
config.vm.box = "minimal/trusty64"
config.vm.box = "minimal/xenial64"
config.vm.synced_folder "./", "/home/vagrant/workspace/src/github.com/achilleasa/gopher-os"