Coyote/scripts/flow_synth_static.tcl.in

26 lines
596 B
Tcl

if {[catch {
########################################################################################################
# Config
source "${CMAKE_BINARY_DIR}/base.tcl"
# Synth static
source "$build_dir/synth_static.tcl"
puts ""
puts "[color $clr_cmplt "**"]"
puts "[color $clr_cmplt "** Static synthesis completed"]"
puts "[color $clr_cmplt "**"]"
puts ""
########################################################################################################
} errorstring]} {
puts "[color $clr_error "** CERR: $errorstring"]"
puts "[color $clr_error "**"]"
exit 1
}
exit 0