Hi, I am trying to use STD_CELL_LIBRARY - sky130_f...
# sky130
b
Hi, I am trying to use STD_CELL_LIBRARY - sky130_fd_sc_ls. I changed the configuration/general.tcl to ->
Copy code
set ::env(STD_CELL_LIBRARY) "sky130_fd_sc_ls".
I am getting an error due to no lef file found in ->
Copy code
openlane/pdks/sky130A/libs.ref/sky130_fd_sc_ls/lef/*.lef
I checked there is no lef file there, I pulled just now, still same. Can someone help resolve this ? Thanks
m
@Bhawandeep Singh Harsh Did you do either of
Copy code
export STD_CELL_LIBRARY=sky130_fd_sc_ls
make pdk
or
Copy code
make full-pdk
in your openlane installation?
b
Thanks @Mitch Bailey I had done
Copy code
make pdk
last time. I tried exporting the env variable as well but that did not work either, due to the "missing lef file" mentioned in original post. I have done
Copy code
make full-pdk
now and looks like it is working. Thanks
👍 1