forked from OSchip/iEDA
35 lines
1.3 KiB
Tcl
Executable File
35 lines
1.3 KiB
Tcl
Executable File
#===========================================================
|
|
## init flow config
|
|
#===========================================================
|
|
flow_init -config $::env(CONFIG_DIR)/flow_config.json
|
|
|
|
#===========================================================
|
|
## read db config
|
|
#===========================================================
|
|
db_init -config $::env(CONFIG_DIR)/db_default_config.json -output_dir_path $::env(RESULT_DIR)
|
|
|
|
#===========================================================
|
|
## reset data path
|
|
#===========================================================
|
|
source $::env(TCL_SCRIPT_DIR)/DB_script/db_path_setting.tcl
|
|
|
|
#===========================================================
|
|
## read lef
|
|
#===========================================================
|
|
source $::env(TCL_SCRIPT_DIR)/DB_script/db_init_lef.tcl
|
|
|
|
#===========================================================
|
|
## read def
|
|
#===========================================================
|
|
def_init -path $::env(RESULT_DIR)/iRT_result.def
|
|
|
|
#===========================================================
|
|
## run gui
|
|
#===========================================================
|
|
gui_start
|
|
|
|
#===========================================================
|
|
## Exit
|
|
#===========================================================
|
|
#flow_exit
|