Hi, I change the computer and i was trying to ope...
# openroad
h
Hi, I change the computer and i was trying to open a design that i made on my old computer usign:
python3 gui.py --viewer openroad ./designs/*/runs/RUN_2024.02.07_01.41.30
but it fails because the path of the libraries is set to the computer that I used to made the harndener.
[ERROR GUI-0070] Error: gui.tcl, 15 cannot read file /home/*/.volare/sky130A/libs.ref/sky130_fd_sc_hd/lib/sky130_fd_sc_hd__tt_025C_1v80.lib.
somebody knows how would I change this path to the correct path that i have on my new computer
m
@Hijos Chelas 1. make a backup of your data in case this screws something up. 2. from your
user_project_wrapper
directory
Copy code
sed -i 's,old-home,new-home,g' $( find designs -type f -exec grep -H volare/sky130A/libs {} \; )
(replace
old-home
and
new-home
with your actual directory names) The
find
command will return a list of filenames that contain the pdk path, and the
sed -i
command will do an in-place replacement of the home directory.