Hi, I recently reinstalled the pdk using the openl...
# openlane
m
Hi, I recently reinstalled the pdk using the openlane flow, after running make test, I get the following error: Any ideas what the fix is?
k
HI, I got the same error. I was searching for answer and it seems that it was an issue time ago hovever they have fix it already. No idea why it is back again
m
It should be -max_slew_margin. @User this comes from your change in commit 8d686c081c2c9aefa16dbbd8ccf5bc8f4dcabc4b
m
@User It was renamed in OR from
max_slew_margin
to
slew_margin
https://github.com/The-OpenROAD-Project/OpenROAD/commit/8514a5c6c42b87a56bd27653e8fda80e5090352a and we updated the OR commit in openlane yesterday but the CI didn't create a new tag for the docker image. @User Please use the latest tag in openlane https://github.com/The-OpenROAD-Project/OpenLane/releases/tag/2021.10.25_20.35.00
m
Thank you! Running these commands fixed my issue:
Copy code
git clone <https://github.com/The-OpenROAD-Project/OpenLane.git>

cd OpenLane/
git checkout tags/2021.10.25_20.35.00
make openlane
make pdk
make test
k
worked as well