Error - Failed to find the Verdi database in ./simv.daidir. To solve the issue, generate the simulation database using VCS tools with the -kdb option.
时间: 2024-02-13 10:03:07 浏览: 454
vcs+verdi 遇到的问题
这个错误提示是因为在运行 Verdi 时没有找到 simulation database。要解决这个问题,你需要在运行 VCS 时使用 "-kdb" 选项来生成 simulation database。具体操作步骤如下:
1. 打开终端并进入你的工程目录。
2. 执行以下命令重新编译代码并生成 simulation database:
```
vcs -full64 -kdb -debug_access+r your_source_files.v
```
其中,"your_source_files.v" 是你的源代码文件。
3. 等待编译和生成完成后,在执行 Verdi 命令之前,需要先设置以下环境变量:
```
export NOVAS_HOME=<path to novas installation directory>
export LM_LICENSE_FILE=<path to your license file>
```
4. 执行以下命令启动 Verdi:
```
verdi -kdb ./simv.kdb
```
其中,"./simv.kdb" 是生成的 simulation database 文件路径。
5. 如果一切顺利,Verdi 就会启动并加载 simulation database,你就可以开始进行调试和分析了。
希望这个方法能够解决你的问题,如果还有其他问题,可以继续向我提问。
阅读全文