<div>TCL Command: How to change the Verilog Standard setting using tcl script/command on Lattice software?</div>
Description:
Language support in a project design implementation is supported in Lattice software by invoking the example command below:
prj_impl option VerilogStandard {"System Verilog"}
Solution:
1. The needed script for latest Lattice Radiant software version:
prj_set_impl_opt VerilogStandard {<option_name>} or prj_set_impl_opt VerilogStandard "<option_name>"
valid option_name = Verilog 95, Verilog 2001 or System Verilog
Example: prj_set_impl_opt VerilogStandard {System Verilog} or
prj_set_impl_opt VerilogStandard "System Verilog"
2. The needed script for latest Lattice Diamond software version:
prj_impl option VerilogStandard {"<option_name>"}
valid option_name = Verilog 95, Verilog 2001 or System Verilog