当前位置:首页 > Linux > 正文内容

在Linux下联合ISE和第三方仿真工具进行仿真 ModelSim IUS VCS

chanra1n4年前 (2023-01-10)Linux6917

参考自Xilinx官方手册

image.png

image.png

 - How do I compile Xilinx Simulation libraries for ModelSim Simulator ?
   ANS: You can compile the libraries for MTI-SE, MTI-PE edition using
        the -s mti_se and -s mti_pe options
   Example:-
      compxlib -s mti_se -arch all -lib all -l all
      compxlib -s mti_pe -arch all -lib all -l all

 - How do I compile Xilinx Simulation libraries for NCSIM Simulator ?
   ANS: You can compile the libraries for NCSIM using -s ncsim option
   Example:-
      compxlib -s ncsim -arch all -lib all -l vhdl
      compxlib -s ncsim -arch all -lib all -l verilog

 - How do I compile Xilinx Simulation libraries for VCS MX Simulator ?
   ANS: You can compile the libraries for VCS MX using -s vcs_mx option
   Example:-
      compxlib -s vcs_mx -arch all -lib all -l vhdl
      compxlib -s vcs_mx -arch all -lib all -l verilog

 - How do I compile Xilinx Simulation libraries for VCS MXi Simulator ?
   ANS: You can compile the libraries for VCS MXi using -s vcs_mxi option
   Example:-
      compxlib -s vcs_mxi -arch all -lib all -l vhdl
      compxlib -s vcs_mxi -arch all -lib all -l verilog

 - How do I compile Xilinx Cores ?
   ANS: You can compile the Xilinx Cores using the -lib xilinxcorelib option.
   Example:-
      compxlib -s mti_pe -arch virtex2 -lib xilinxcorelib -l verilog
      compxlib -s mti_pe -arch virtex2 -lib xilinxcorelib -l vhdl

在ISE安装目录的/opt/xilinx/14.7/ISE_DS/ISE/bin/lin64下运行命令:

./compxlib -s mti_se -arch all -l all -dir /usr/local/eda_tools/xilinx_lib/ise_12_3_modelsim

其中后面的路径是编译后的库放在的路径,运行后编译modelsim使用的库


如果使用的是Candense的IUS或者IES等ncsim的,就这样

./compxlib -s ncsim -arch all -l all -dir /usr/local/eda_tools/xilinx_lib/ise_12_3_ncsim

image.png

image.png

如果你使用的是其他工具,例如VCS

./compxlib -s vcs_mx -arch all -l all -dir /usr/local/eda_tools/xilinx_lib/ise_12_3_vcs_mx




扫描二维码推送至手机访问。

版权声明:本文由我的FPGA发布,如需转载请注明出处。

本文链接:https://world.myfpga.cn/index.php/post/295.html

分享给朋友:

“在Linux下联合ISE和第三方仿真工具进行仿真 ModelSim IUS VCS” 的相关文章

Centos7 基于Docker安装OnlineJudge

Centos7 基于Docker安装OnlineJudge

点击访问青岛大学OnlineJudge GitHub地址首先你需要安装Docker,如果您并没有安装,您可以移步我们上一篇文章,那里介绍了如何安装Docker,https://world.myfpga.cn/?id=69如果您已经安装了Docker,现在请您运行以下内容一键安装OnlineJudge...

一键解决KALI中文乱码问题

一键解决KALI中文乱码问题

echo "deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib" >> /etc/apt/sour...

在Ubuntu/Linux环境中用Python进行FPGA编程和OpenCL应用开发

在Ubuntu/Linux环境中用Python进行FPGA编程和OpenCL应用开发

随着FPGA (Field Programmable Gate Array) 技术的快速发展,越来越多的开发者开始使用Ubuntu或Linux环境进行FPGA的编程和开发工作。在本文中,我们将会介绍如何在Ubuntu/Linux环境中使用Python作为编程语言进行FPGA开发,以及如何在这些环境中...

解决APT-GET一直Waiting for header或者Working的问题

解决APT-GET一直Waiting for header或者Working的问题

rm -rf rm /var/lib/apt/lists/partial/* && rm -rf rm /var/lib/apt/lists/* && apt-get&...

Ubuntu16.04 Armhf 内置APT源配置文件(备份)

Ubuntu16.04 Armhf 内置APT源配置文件(备份)

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of ...

(原创)解决Leda2008、2014等新版本Unit Name为空的问题

(原创)解决Leda2008、2014等新版本Unit Name为空的问题

在Leda2007中可以正常加载编译过程文件,并且能够正确显示Unit Name,但是在2008以及更新版本的Leda中,使用相同操作发现Unit Name为空。这时可以采用这样的方法去启动Leda,问题即可解决:run_leda_2014 -sverilog +gui ...