News
Openlane on low RAM machines
Written on 02.12.2024 13:57 by Artem Ageev
The milestone 2 instructions have been updated with information how to run OpenLane if your machine has less than 16G of RAM.
you need to run:
export DOCKER_SWAP=-1
every time before you run make mount (you also need to run the other export command too)
To allow docker to use swap.
No need to run make again.
To enable the swap on your machine run the following commands as root:
dd if=/dev/zero of=/swapfile10 bs=1G count=10
chmod 0600 /swapfile10
mkswap /swapfile10
swapon /swapfile10
chmod 0600 /swapfile10
mkswap /swapfile10
swapon /swapfile10