Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
20705 Discussions

Suppress Numeric_std and Synopsys warnings in Modelsim

Altera_Forum
Honored Contributor II
2,708 Views

How can I suppress warning messages from the Numeric_std and synopsys packages when I initiate a simulation via a TCL script using the vsim command? 

 

I have them suppressed in the menu options, but when I run a TCL script it unsuppresses them, very annoying.
0 Kudos
1 Reply
Altera_Forum
Honored Contributor II
1,649 Views

I know these variables are stored in the local modelsim.ini file 

 

 

; Turn off warnings from the std_logic_arith, std_logic_unsigned ; and std_logic_signed packages. ; StdArithNoWarnings = 1 ; Turn off warnings from the IEEE numeric_std and numeric_bit packages. ; NumericStdNoWarnings = 1 

 

 

Maybe adding somthing like 

 

set NumericStdNoWarnings 1 set StdArithNoWarnings 1 

 

to the TCL script will ensure they are set :rolleyes:  

 

I haven't tried this but it might be worth a try
0 Kudos
Reply