SystemC for Java via Java Panama(FFM)
- SystemC Lib download Ref: https://www.accellera.org/downloads/standards/systemc
- Mingw POSIX prebuild verison install Ref: https://github.com/niXman/mingw-builds-binaries/releases
- CMake install
- Enter your SystemC folder that has been already downloaded.
mkdir buildthencd buildcmake .. -G "MinGW Makefiles" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_INSTALL_PREFIX="D:/software/systemc" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17- cmake --build . --config Release
- cmake --install .
- Change the SystemC path which is already installed in run.ps1 file.
- Run
run.ps1
javac -cp . App.javaandjava -cp . App