Coyote/scripts/flow_synth_shell.tcl.in

26 lines
593 B
Tcl

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