Skip to content

Commit 516e277

Browse files
committed
global place: default values
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent a896bef commit 516e277

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/scripts/global_place.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if { $::env(GPL_TIMING_DRIVEN) } {
1414
# to not buffer IO ports, set environment variable
1515
# DONT_BUFFER_PORT = 1
1616
if { ![env_var_exists_and_non_empty FOOTPRINT] } {
17-
if { ![env_var_equals DONT_BUFFER_PORTS 1] } {
17+
if { !$::env(DONT_BUFFER_PORTS) } {
1818
puts "Perform port buffering..."
1919
buffer_ports
2020
}
@@ -52,7 +52,7 @@ if { $result != 0 } {
5252

5353
estimate_parasitics -placement
5454

55-
if { [env_var_equals CLUSTER_FLOPS 1] } {
55+
if { $::env(CLUSTER_FLOPS) } {
5656
cluster_flops
5757
estimate_parasitics -placement
5858
}

0 commit comments

Comments
 (0)