Skip to content

Commit 3fb524c

Browse files
authored
Merge pull request #1683 from Pinata-Consulting/rtlmp-args-consistency
rtlmp: add RTLMP_ARGS consistent with global/place/cts
2 parents 74c112e + f7cf009 commit 3fb524c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

flow/scripts/macro_place_util.tcl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,14 @@ if {[find_macros] != ""} {
117117
append additional_rtlmp_args " -fence_uy $env(RTLMP_FENCE_UY)"
118118
}
119119

120+
set all_args $additional_rtlmp_args
120121

121-
puts "Call Macro Placer $additional_rtlmp_args"
122+
if { [info exists ::env(RTLMP_ARGS)] } {
123+
set all_args $::env(RTLMP_ARGS)
124+
}
122125

123-
rtl_macro_placer \
124-
{*}$additional_rtlmp_args
126+
puts "rtl_macro_placer [join $all_args " "]"
127+
rtl_macro_placer {*}$all_args
125128

126129
puts "Delete buffers for RTLMP flow..."
127130
remove_buffers

0 commit comments

Comments
 (0)