From c747933d0e3678bedeeb374d201926c17d797931 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Sun, 23 Apr 2017 22:48:52 +0200 Subject: [PATCH] (Vagrantfile) use Ubuntu xenial (for newer gcc) --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 86ff4a4..aff4e1e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,17 +8,17 @@ Vagrant.configure("2") do |config| # Every Vagrant development environment requires a box. You can search for # boxes at https://atlas.hashicorp.com/search. - config.vm.box = "ubuntu/trusty64" + config.vm.box = "ubuntu/xenial64" config.vm.provider "lxc" do |lxc, override| - override.vm.box = "fgrehm/trusty64-lxc" + override.vm.box = "zaikin/xenial64-lxc" end # # mass-define "generic" Ubuntu boxes # - %w{5.1 5.2 5.4 5.7 5.8 5.9 6.0}.each { |version| + %w{5.7 5.8 5.9 6.0}.each { |version| config.vm.define "v8-#{version}" do |i| i.vm.synced_folder ".", "/data/v8js"