Commit 7353fb40 authored by Peter Barker's avatar Peter Barker

Vagrantfile: allocate more memory for VMs

compiling moc/moc_QGCMapEngine.cpp

cc1plus: out of memory allocating 737010184 bytes after a total of 52228096 bytes
parent 55c63d1f
......@@ -20,13 +20,13 @@ Vagrant.configure(2) do |config|
override.vm.box = "tknerr/baseimage-ubuntu-16.04"
end
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "4096"]
vb.customize ["modifyvm", :id, "--memory", "6144"]
vb.customize ["modifyvm", :id, "--cpus", "1"]
vb.gui = true
end
["vmware_fusion", "vmware_workstation"].each do |p|
config.vm.provider p do |v|
v.vmx["memsize"] = "4096"
v.vmx["memsize"] = "6144"
v.vmx["numvcpus"] = "1"
v.gui = true
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment