We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ec5a1 commit a896befCopy full SHA for a896bef
flow/scripts/floorplan.tcl
@@ -111,7 +111,7 @@ if { [env_var_exists_and_non_empty FASTROUTE_TCL] } {
111
112
source_env_var_if_exists FOOTPRINT_TCL
113
114
-if { ![env_var_equals SKIP_REPAIR_TIE_FANOUT 1] } {
+if { !$::env(SKIP_REPAIR_TIE_FANOUT) } {
115
# This needs to come before any call to remove_buffers. You could have one
116
# tie driving multiple buffers that drive multiple outputs.
117
# Repair tie lo fanout
@@ -134,7 +134,7 @@ if { [env_var_exists_and_non_empty SWAP_ARITH_OPERATORS] } {
134
replace_arith_modules
135
}
136
137
-if { [env_var_equals REMOVE_ABC_BUFFERS 1] } {
+if { $::env(REMOVE_ABC_BUFFERS) } {
138
# remove buffers inserted by yosys/abc
139
remove_buffers
140
} else {
0 commit comments