From 8f549115d553ad292bd24436ba3bbecfe20373ce Mon Sep 17 00:00:00 2001 From: Sake Blok Date: Thu, 30 May 2019 13:24:02 +0200 Subject: [PATCH] Bump Ubuntu version to 18.04 in Vagrantfile Ubuntu 16.04 uses an older GCC version which produces some errors in compiling. Updating to Ubuntu 18.04 solves these issues as it is using a more recent GCC version (7.4.0). Change-Id: Ia62bb60d3549b7e12ab82abfa5e8751e474bb701 Reviewed-on: https://code.wireshark.org/review/33424 Reviewed-by: Peter Wu Reviewed-by: Sake Blok --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index c5f0f603e5..de6d6fb738 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -22,7 +22,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Install and build the various things (including wireshark!) config.vm.define "ubuntu", autostart: false do |deb| - deb.vm.box = "ubuntu/xenial64" + deb.vm.box = "ubuntu/bionic64" deb.vm.provision "shell" do |s| s.path = 'tools/debian-setup.sh'