如何禁用 SystemC 运行时警告?
我已经成功编译了一个 SystemC 应用程序,我使用它来模拟在通用架构上运行时的 CPU。 我的问题是,当运行应用程序以创建 VCD 文件时,SystemC 内核向我显示了一些警告。
我收到一些警告,如下所示:
警告:(W206)向量包含 4 值逻辑在文件中: ....\cacheseqproc_vcpp20\systemc-2.2.0\src\sysc\datatypes\bit\sc_proxy.h:1385 进程中:process.processname@x ns
嗯...消息本身并不重要...我把它放在这里只是为了让您更好地理解这是在运行时抛出的警告消息。
鉴于我在执行过程中打印了几条重要消息,我真的不希望 SystemC 收到这些详细消息。如何让这种情况发生?
I have successfully compiled a SystemC application that I use in order to simulate a CPU when running on a general architecture.
Well my problem is just that, when running the application in order to create the VCD file, the SystemC kernel plots me some warnings.
I get some warning, something like this:
Warning: (W206) vector contains
4-value logic In file:
....\cacheseqproc_vcpp20\systemc-2.2.0\src\sysc\datatypes\bit\sc_proxy.h:1385
In process: process.processname @ x ns
Well... the message itself is not important... I put it here just to let you understand better tht this is a warning message thrown at RUNNING time.
Given that I print several important messages during the execution, I would really like not to have these verbose messages by SystemC. How to let this happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要禁用所有警告:
要禁用“向量包含 4 值逻辑”警告,但启用其他警告:
To disable all warnings:
To disable the "vector contains 4-value logic" warning, but leave other warnings enabled: