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 <peter@lekensteyn.nl>
Reviewed-by: Sake Blok <sake.blok@SYN-bit.nl>
This commit is contained in:
Sake Blok 2019-05-30 13:24:02 +02:00 committed by Sake Blok
parent 9d8f55cb05
commit 8f549115d5
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -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'