File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -93,14 +93,17 @@ if {$use_floorplan_def} {
9393}
9494
9595if { [env_var_exists_and_non_empty MAKE_TRACKS] } {
96+ puts " Reading $::env(MAKE_TRACKS) "
9697 source $::env(MAKE_TRACKS)
9798} elseif {[file exists $::env(PLATFORM_DIR) /make_tracks.tcl]} {
99+ puts " Reading $::env(PLATFORM_DIR) /make_tracks.tcl"
98100 source $::env(PLATFORM_DIR) /make_tracks.tcl
99101} else {
100102 make_tracks
101103}
102104
103105if {[env_var_exists_and_non_empty FOOTPRINT_TCL]} {
106+ puts " Reading $::env(FOOTPRINT_TCL) "
104107 source $::env(FOOTPRINT_TCL)
105108}
106109
@@ -190,11 +193,13 @@ if { [env_var_equals RESYNTH_AREA_RECOVER 1] } {
190193}
191194
192195if { [env_var_exists_and_non_empty POST_FLOORPLAN_TCL] } {
196+ puts " Reading $::env(POST_FLOORPLAN_TCL) "
193197 source $::env(POST_FLOORPLAN_TCL)
194198}
195199
196200
197201if {[env_var_exists_and_non_empty IO_CONSTRAINTS]} {
202+ puts " Reading $::env(IO_CONSTRAINTS) "
198203 source $::env(IO_CONSTRAINTS)
199204}
200205
Original file line number Diff line number Diff line change @@ -28,9 +28,11 @@ proc load_design {design_file sdc_file} {
2828 read_sdc $::env(RESULTS_DIR) /$sdc_file
2929
3030 if [file exists $::env(PLATFORM_DIR) /derate.tcl] {
31+ puts " Reading in $::env(PLATFORM_DIR) /derate.tcl"
3132 source $::env(PLATFORM_DIR) /derate.tcl
3233 }
3334
35+ puts " Reading in $::env(PLATFORM_DIR) /setRC.tcl"
3436 source $::env(PLATFORM_DIR) /setRC.tcl
3537
3638 if { [env_var_equals LIB_MODEL CCS] } {
You can’t perform that action at this time.
0 commit comments