PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, July 12, 2022

[FIXED] How to remove SystemC startup text

 July 12, 2022     message, startup, systemc, text     No comments   

Issue

I wish to remove the following message at the startup of any systemc simulation: "SystemC 2.3.0-ASI --- Jun 18 2013 16:21:08 Copyright (c) 1996-2012 by all Contributors, ALL RIGHTS RESERVED"

Do you know where is this being done so that I can comment them?


Solution

You can define environment variable SYSTEMC_DISABLE_COPYRIGHT_MESSAGE as 1 before you execute your SystemC application. In Bash:

$ # compile your systemc code
$ export SYSTEMC_DISABLE_COPYRIGHT_MESSAGE=1
$ ./a.out

In Csh, you can use setenv SYSTEMC_DISABLE_COPYRIGHT_MESSAGE 1 in place of export.



Answered By - Puneet Goel
Answer Checked By - Mildred Charles (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing