Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
modified the simulation compile step to be compile and analyze step, …
…CR 853305
  • Loading branch information
ncimino committed Mar 10, 2016
commit 6b75d843d01778648f13e8b0dc11a3be2cc1993a
6 changes: 5 additions & 1 deletion tclapp/xilinx/ies/helpers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,11 @@ proc usf_launch_script { simulator step } {
set faulty_run 0
set cwd [pwd]
cd $::tclapp::xilinx::ies::a_sim_vars(s_launch_dir)
send_msg_id USF-IES-063 INFO "Executing '[string toupper $step]' step in '$run_dir'"
set display_step [string toupper $step]
if { "$display_step" == "COMPILE" } {
set display_step "${display_step} and ANALYZE"
}
send_msg_id USF-IES-063 INFO "Executing '${display_step}' step in '$run_dir'"
set results_log {}
switch $step {
{compile} -
Expand Down
6 changes: 5 additions & 1 deletion tclapp/xilinx/modelsim/helpers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,11 @@ proc usf_launch_script { simulator step } {
set faulty_run 0
set cwd [pwd]
cd $::tclapp::xilinx::modelsim::a_sim_vars(s_launch_dir)
send_msg_id USF-ModelSim-069 INFO "Executing '[string toupper $step]' step in '$run_dir'"
set display_step [string toupper $step]
if { "$display_step" == "COMPILE" } {
set display_step "${display_step} and ANALYZE"
}
send_msg_id USF-ModelSim-069 INFO "Executing '${display_step}' step in '$run_dir'"
set results_log {}
switch $step {
{compile} -
Expand Down
6 changes: 5 additions & 1 deletion tclapp/xilinx/questa/helpers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,11 @@ proc usf_launch_script { simulator step } {
set faulty_run 0
set cwd [pwd]
cd $::tclapp::xilinx::questa::a_sim_vars(s_launch_dir)
send_msg_id USF-Questa-069 INFO "Executing '[string toupper $step]' step in '$run_dir'"
set display_step [string toupper $step]
if { "$display_step" == "COMPILE" } {
set display_step "${display_step} and ANALYZE"
}
send_msg_id USF-Questa-069 INFO "Executing '${display_step}' step in '$run_dir'"
set results_log {}
switch $step {
{compile} -
Expand Down
6 changes: 5 additions & 1 deletion tclapp/xilinx/vcs/helpers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,11 @@ proc usf_launch_script { simulator step } {
set faulty_run 0
set cwd [pwd]
cd $::tclapp::xilinx::vcs::a_sim_vars(s_launch_dir)
send_msg_id USF-VCS-062 INFO "Executing '[string toupper $step]' step in '$run_dir'"
set display_step [string toupper $step]
if { "$display_step" == "COMPILE" } {
set display_step "${display_step} and ANALYZE"
}
send_msg_id USF-VCS-062 INFO "Executing '${display_step}' step in '$run_dir'"
set results_log {}
switch $step {
{compile} -
Expand Down
6 changes: 5 additions & 1 deletion tclapp/xilinx/xsim/helpers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,11 @@ proc usf_launch_script { simulator step } {
set faulty_run 0
set cwd [pwd]
cd $::tclapp::xilinx::xsim::a_sim_vars(s_launch_dir)
send_msg_id USF-XSim-061 INFO "Executing '[string toupper $step]' step in '$run_dir'"
set display_step [string toupper $step]
if { "$display_step" == "COMPILE" } {
set display_step "${display_step} and ANALYZE"
}
send_msg_id USF-XSim-061 INFO "Executing '${display_step}' step in '$run_dir'"
set results_log {}
switch $step {
{compile} -
Expand Down