Browse Source

vagrant: macos: give more memory

sometimes the VM just got stuck (usually when building/testing openssl 3),
maybe more RAM helps?
Thomas Waldmann 8 months ago
parent
commit
58f8554b6d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -411,7 +411,7 @@ Vagrant.configure(2) do |config|
   config.vm.define "macos1012" do |b|
     b.vm.box = "macos-sierra"
     b.vm.provider :virtualbox do |v|
-      v.memory = 4096 + $wmem
+      v.memory = 8192 + $wmem
       v.customize ['modifyvm', :id, '--ostype', 'MacOS_64']
       v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
       v.customize ['modifyvm', :id, '--nested-hw-virt', 'on']