How to upgrade from rc2 openlane to rc3. Do I just...
# openlane
i
How to upgrade from rc2 openlane to rc3. Do I just delete the previous version and reinstall it or are there terminal commands to update. Same goes for magic, I have 8.3.57 they require 8.3.60 but they have not given any command to upgrade in their commentary
a
@ibad1112, for openlane, you'll have to pull master and just run:
Copy code
make openlane
This will give you a new docker image
openlane:rc3
Then, you'll have to get a newer version of the pdk. This is where magic comes in. You have to follow the instructions on the magic vlsi website in order to get a newer version, then you go back to the openlane directory and run:
Copy code
export PDK_ROOT=<Where you want the pdk to be>
make pdk
This will generate the hd library under
$PDK_ROOT/sky130A/
Then you can run
Copy code
make test
To make sure you're all set.
i
Thanks :)