Dinesh A
10/18/2021, 7:12 AMdinesha@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
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
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
Praveen raj
10/18/2021, 10:26 AMDinesh A
10/18/2021, 11:14 AM