Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Cadence IUS run command Linux

Status
Not open for further replies.

trav1s

Full Member level 1
Joined
Nov 11, 2010
Messages
98
Helped
29
Reputation
60
Reaction score
28
Trophy points
1,318
Location
Japan
Activity points
2,025
I just installed Cadence IUS in Linux with default settings. How do you start it in the terminal?
 

I hope you have all necessary settings in your cshrc file, now if you do which ncsim in your terminal make sure it returns IUS installation path, to work with simulator type just type ncsim <arg1> <arg2>... ; BTW which version are you using?
 

Therse are three methods to start ncsim:
1. Three steps for terminal
ncvlog *.v
ncelab top_module_name (-nc_options)
ncsim top_module_name (-nc_options)

2. one step for terminal
ncverilog *.v (+nc_options)

3. The easiest way to start ncsim is by GUI.
nclaunch &
 

You just need to have the correct settings for the path etc. The following shell variables should be set in the manner described below:
setenv PATH <path_to_ius_installation>/tools/bin:$PATH
setenv LD_LIBRARY_PATH <path_to_ius_installation>/tools/lib
setenv CDS_INST_DIR <path_to_ius_installation>

As Sudip mentioned if you do which ncsim, it should show the path to the ncsim binary. You can use the commands given above or you can use
irun command for single step execution of the simulation. "-gui" option can be used for launching the GUI.
 

Hi trav1s, could you please share it?
 

You also need to set where the license file is
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top