Skip to content

Commit c3ef992

Browse files
committed
variables: PRE_GLOBAL_ROUTE_TCL now has consistent naming
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 9e0d3b2 commit c3ef992

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ grt: $(RESULTS_DIR)/5_1_grt.odb
550550

551551
# STEP 1: Run global route
552552
#-------------------------------------------------------------------------------
553-
$(eval $(call do-step,5_1_grt,$(RESULTS_DIR)/4_cts.odb $(FASTROUTE_TCL) $(PRE_GLOBAL_ROUTE),global_route))
553+
$(eval $(call do-step,5_1_grt,$(RESULTS_DIR)/4_cts.odb $(FASTROUTE_TCL) $(PRE_GLOBAL_ROUTE_TCL),global_route))
554554

555555
# STEP 2: Run detailed route
556556
#-------------------------------------------------------------------------------

flow/scripts/global_route.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ load_design 4_cts.odb 4_cts.sdc
66
# This proc is here to allow us to use 'return' to return early from this
77
# file which is sourced
88
proc global_route_helper { } {
9-
source_env_var_if_exists PRE_GLOBAL_ROUTE
9+
source_env_var_if_exists PRE_GLOBAL_ROUTE_TCL
1010

1111
proc do_global_route { } {
1212
set all_args [concat [list \

flow/scripts/variables.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,11 @@ ABSTRACT_SOURCE:
824824
Which .odb file to use to create abstract
825825
stages:
826826
- generate_abstract
827+
PRE_GLOBAL_ROUTE_TCL:
828+
description: |
829+
Specifies a Tcl script with commands to run before global route.
830+
stages:
831+
- grt
827832
GLOBAL_ROUTE_ARGS:
828833
description: >
829834
Replaces default arguments for global route.

flow/util/makeIssue.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ISSUE_CP_PLATFORM_FILE_VARS="LIB_FILES \
3232
PDN_TCL \
3333
POST_PDN_TCL \
3434
POST_CTS_TCL \
35-
PRE_GLOBAL_ROUTE \
35+
PRE_GLOBAL_ROUTE_TCL \
3636
FASTROUTE_TCL \
3737
POST_DETAIL_ROUTE_TCL \
3838
RCX_RULES \

0 commit comments

Comments
 (0)