<@U0175T39732> I have cloned latest OpenRAM repo a...
# openram
d
@User I have cloned latest OpenRAM repo and make run fails with below ERROR
Copy code
dinesha@lenovo-i3-10100-07IMB05:~/workarea/tools/source/OpenRAM$ sudo make
git clone git@github.com:google/skywater-pdk-libs-sky130_fd_bd_sram.git /home/dinesha/workarea/tools/source/OpenRAM/sky130_fd_bd_sram
Cloning into '/home/dinesha/workarea/tools/source/OpenRAM/sky130_fd_bd_sram'...
<mailto:git@github.com|git@github.com>: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
make: *** [Makefile:58: /home/dinesha/workarea/tools/source/OpenRAM/sky130_fd_bd_sram] Error 128
When i changed the git link path in Makefile SRAM_GIT_REPO ?= git@github.com:google/skywater-pdk-libs-sky130_fd_bd_sram.git To SRAM_GIT_REPO ?= https://github.com/google/skywater-pdk-libs-sky130_fd_pr.git Then it start compiling But failed with below ERROR
Copy code
mkdir -p /home/dinesha/workarea/tools/source/OpenRAM/compiler/../technology/sky130/mag_lib
cp: missing destination file operand after '/home/dinesha/workarea/tools/source/OpenRAM/compiler/../technology/sky130/mag_lib'
Try 'cp --help' for more information.
make[1]: *** [Makefile:84: /home/dinesha/workarea/tools/source/OpenRAM/compiler/../technology/sky130/mag_lib] Error 1
make[1]: Leaving directory '/home/dinesha/workarea/tools/source/OpenRAM'
make: *** [Makefile:67: all] Error 2
Issue looks to be there is no *.mag files under $(SRAM_LIBRARY)/cells/*/*.mag) folder Here is one of the sample folder
Copy code
dinesha@lenovo-i3-10100-07IMB05:~/workarea/tools/source/OpenRAM/sky130_fd_bd_sram$ ls -lrt cells/rf_test_coil3/sky130_fd_pr__rf_test_coil3.*
-rw-r--r-- 1 dinesha pyfive 959993 Oct 18 13:02 cells/rf_test_coil3/sky130_fd_pr__rf_test_coil3.svg
-rw-r--r-- 1 dinesha pyfive    684 Oct 18 13:02 cells/rf_test_coil3/sky130_fd_pr__rf_test_coil3.spice
-rw-r--r-- 1 dinesha pyfive 167900 Oct 18 13:02 cells/rf_test_coil3/sky130_fd_pr__rf_test_coil3.magic.lef
-rw-r--r-- 1 dinesha pyfive  31418 Oct 18 13:02 cells/rf_test_coil3/sky130_fd_pr__rf_test_coil3.gds
p
I had these similar issues, so yes i did change the installation path to the below and for the error with the mag files(i am not sure it was the particular error i got, but this is what i did to address another error that i got)...i cloned this repo again in the OpenRam directory https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git
d
Thanks Praveen👍, Once I changed the Link to https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git instead of https://github.com/google/skywater-pdk-libs-sky130_fd_pr.git Then make file compile is successful.
👍 1