From 42fe57320e8657ff0e71a32be3fce1f9bf691ad2 Mon Sep 17 00:00:00 2001 From: Rameen Anwar Date: Mon, 12 Sep 2022 20:31:28 +0500 Subject: [PATCH] Replaced path to scl lib with $::env(LIB_SYNTH) --- scripts/tcl_commands/dft.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tcl_commands/dft.tcl b/scripts/tcl_commands/dft.tcl index 8e358e94c..3ccef9c95 100644 --- a/scripts/tcl_commands/dft.tcl +++ b/scripts/tcl_commands/dft.tcl @@ -15,7 +15,7 @@ proc run_dft {args} { if { $::env(DFT_ENABLE) } { fault_chain \ -verilog $::env(synthesis_results)/$::env(DESIGN_NAME).v \ - -liberty $::env(PDK_ROOT)/sky130A/libs.ref/sky130_fd_sc_hd/lib/sky130_fd_sc_hd__tt_100C_1v80.lib \ + -liberty $::env(LIB_SYNTH) \ -clock $::env(CLOCK_PORT) \ -reset $::env(RESET_PORT) \ -output $::env(synthesis_results)/$::env(DESIGN_NAME).v @@ -24,7 +24,7 @@ proc run_dft {args} { fault_tap \ -verilog $::env(synthesis_results)/$::env(DESIGN_NAME).v \ - -liberty $::env(PDK_ROOT)/sky130A/libs.ref/sky130_fd_sc_hd/lib/sky130_fd_sc_hd__tt_100C_1v80.lib \ + -liberty $::env(LIB_SYNTH) \ -clock $::env(CLOCK_PORT) \ -reset $::env(RESET_PORT) \ -output $::env(synthesis_results)/$::env(DESIGN_NAME).v