git clone https://github.com/accellera-official/systemc.git
cd systemc
mkdir build
cd build
make -j$(nproc)
make install
export SYSTEMC_HOME=/path/to/systemc/install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| mkdir build | |
| cd build | |
| cmake .. | |
| make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <QCoreApplication> | |
| #include <QDate> | |
| #include <QDebug> | |
| #include <iostream> | |
| enum class debug_date : int32_t | |
| { | |
| invalid, | |
| yyyy_mm_dd, | |
| }; |