小智 5
您可以SYSTEMC_DISABLE_COPYRIGHT_MESSAGE
在执行SystemC应用程序之前将环境变量定义为1。在Bash中:
$ # compile your systemc code
$ export SYSTEMC_DISABLE_COPYRIGHT_MESSAGE=1
$ ./a.out
Run Code Online (Sandbox Code Playgroud)
在Csh中,您可以setenv SYSTEMC_DISABLE_COPYRIGHT_MESSAGE 1
代替使用export
。