Error - ./simv.daidir is not generated with the -kdb option. Specify the -kdb option when generating the database by VCS tools.
时间: 2023-11-28 12:49:39 浏览: 454
VCS学习总结
5星 · 资源好评率100%
这个错误提示是由于使用VCS工具生成数据库时,没有使用-kdb选项。在生成数据库时,应该使用以下命令:
```
vcs -kdb <database_name> <source_files>
```
其中`<database_name>`是你想要使用的数据库名称,`<source_files>`是你要编译的Verilog源文件的列表。请确保在生成数据库时使用了`-kdb`选项。
阅读全文