https://open-source-silicon.dev logo
#openlane
Title
# openlane
m

Mike Tomlinson

10/27/2021, 11:41 PM
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

Krzysztof Herman

10/28/2021, 12:04 AM
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

Matt Liberty

10/28/2021, 4:58 AM
It should be -max_slew_margin. @User this comes from your change in commit 8d686c081c2c9aefa16dbbd8ccf5bc8f4dcabc4b
m

Manar Abdelatty

10/28/2021, 10:39 AM
@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

Mike Tomlinson

10/28/2021, 1:47 PM
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

Krzysztof Herman

10/28/2021, 3:27 PM
worked as well
2 Views