#602 CVC step fails if MAGIC_EXT_USE_GDS=1
New issue created by
stevvik
I set MAGIC_EXT_USE_GDS=1 in configuration file to activate Device level LVS and got CVC step (34) failed because awk is not able to find results/magic/<design_name>.lef.spice and crashes.
Here is a part of flow_summary.log:
[INFO]: current step index: 34
[INFO]: Running CVC
[ERROR]: during executing: "awk { /Black-box entry subcircuit/ { # remove black-box defintions
while ( $1 != ".ends" ) {
getline;
}
getline;
}
/^*/ { # remove comments
next;
}
/^.ENDS .*/ { # remove name from ends lines
print $1;
next;
}
{
print $0;
}} /proj/memcom/memcom_tools/OpenTools/PDK/sky130/sky130A_2021.08.03_05.51.29/sky130A/libs.ref/sky130_fd_sc_hd/cdl/sky130_fd_sc_hd.cdl /openLANE_flow/designs/ram_dp_bist/runs/full_run/results/magic/ram_dp_bist.lef.spice > /openLANE_flow/designs/ram_dp_bist/runs/full_run/results/cvc/ram_dp_bist.cdl"
[ERROR]: Exit code: 1
[ERROR]: Last 10 lines:
awk: cmd. line
15 fatal: cannot open file `/openLANE_flow/designs/ram_dp_bist/runs/full_run/results/magic/ram_dp_bist.lef.spice' for reading (No such file or directory)
[ERROR]: Please check awk log file
[ERROR]: Dumping to /openLANE_flow/designs/ram_dp_bist/runs/full_run/error.log
[INFO]: Calculating Runtime From the Start...
[INFO]: Flow failed for ram_dp_bist/09-09_08-05 in 2h33m32s
The-OpenROAD-Project/OpenLane