Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在启动任何 systemc 模拟时删除以下消息:“SystemC 2.3.0-ASI --- 2013 年 6 月 18 日 16:21:08 版权所有 (c) 1996-2012,所有贡献者,保留所有权利”
你知道这是在哪里完成的,以便我可以评论他们吗?
SYSTEMC_DISABLE_COPYRIGHT_MESSAGE您可以在执行 SystemC 应用程序之前将环境变量定义为 1。在 Bash 中:
SYSTEMC_DISABLE_COPYRIGHT_MESSAGE
$ # compile your systemc code $ export SYSTEMC_DISABLE_COPYRIGHT_MESSAGE=1 $ ./a.out
在 Csh 中,您可以使用setenv SYSTEMC_DISABLE_COPYRIGHT_MESSAGE 1.export
setenv SYSTEMC_DISABLE_COPYRIGHT_MESSAGE 1
export