Hi, I get an error when I run `make pdk` and then ...
# openram
c
Hi, I get an error when I run
make pdk
and then
make install
in the sky130 pdk setup section of OpenRAM's README. The reason is that
cd $(OPEN_PDKS_DIR) && git pull && git checkout $(OPEN_PDKS_GIT_COMMIT)
is executed twice by
make pdk
and
make install
. If you change
install: $(SRAM_LIB_DIR) pdk
to
install: $(SRAM_LIB_DIR)
, the problem will be solved, but you may rewrite the README since you can also install by
make install
alone.
m
I will fix this
It's in the dev branch now.
Thanks!
👍 1
c
Thanks for the reply. I saw the update on the dev branch. If you edited the Makefile, you don't need to edit the README. It is one or the other that should be edited.