Back to Browse

SystemC: Installation on Linux

6.9K views
Jul 16, 2018
18:30

A step-by-step tutorial on how to install SystemC library on Linux (Ubuntu 64-Bit) and validate the same. Suggested video resolution is 480p+ for better text clarity. # Jump List # 1. 0:31 - Prerequisite 2. 3:00 - SystemC Installation in Debug mode 3. 8:59 - SystemC Installation in Release mode 4. 13:52 - Create an sample example using the above built library. # SystemC Download Link # * http://www.accellera.org/downloads/standards/systemc ** Download *.tar.gz for Linux # Prerequisite Tools # 1. cmake (3.0+) 2. g++ (5.4+) 3. build-essential 4. gdb 5. doxygen 6. graphviz # Debug build commands # % pwd /home/abc/Downloads/systemc-2.3.2 % mkdir buildDebug % cd buildDebug % cmake \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_DEBUG_POSTFIX=”-d” \ -DCMAKE_INSTALL_PREFIX=$HOME/Desktop/systemc-2.3.2-install \ -DCMAKE_CXX_STANDARD=11 \ -DBUILD_SOURCE_DOCUMENTATION=ON \ .. % make -j 4 % make check -j 4 % make install # Release build commands # % pwd /home/abc/Downloads/systemc-2.3.2 % mkdir buildDebug % cd buildDebug % cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=$HOME/Desktop/systemc-2.3.2-install \ -DCMAKE_CXX_STANDARD=11 \ -DBUILD_SOURCE_DOCUMENTATION=ON \ .. % make -j 4 % make check -j 4 % make install # Contact Us # Website: http://www.circuitsutra.com/ Facebook: https://www.facebook.com/CircuitSutra/ Linkedin: https://www.linkedin.com/company/1013... Twitter: https://twitter.com/CircuitSutra # Music Credits # https://www.bensound.com/royalty-free-music/track/ukulele

Download

1 formats

Video Formats

360pmp432.6 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

SystemC: Installation on Linux | NatokHD