Compare commits
No commits in common. "3f97fcc28c76175bb528193751d1a7d1c3a7b2ef" and "1c486cf9ec78259813314f4b3cfc500201ef0aaf" have entirely different histories.
3f97fcc28c
...
1c486cf9ec
@ -10,6 +10,7 @@
|
|||||||
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
||||||
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||||
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||||
|
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||||
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
</storageModule>
|
</storageModule>
|
||||||
|
48
README.md
48
README.md
@ -1,18 +1,50 @@
|
|||||||
# SystemC-Components-Test
|
# SystemC-Components-Test
|
||||||
Examples and tests for the SystemC-Components
|
Examples and tests for the SystemC-Components
|
||||||
|
|
||||||
## Prerequisites:
|
#Prerequisites:
|
||||||
|
|
||||||
In Console:
|
In Console:
|
||||||
|
|
||||||
git clone --recursive -b develop https://git.minres.com/SystemC/SystemC-Components-Test.git
|
-Check for needed modules in ~/.bashrc
|
||||||
cd SystemC-Components-Test/
|
they should be available directly in the linux installation or in the Modulefile top level file in the Project. If not, install it and add it to $PATH with:
|
||||||
|
|
||||||
|
export PATH="needed-path:$PATH"
|
||||||
|
|
||||||
|
-Edit bashrc and add:
|
||||||
|
|
||||||
|
./opt/shared/modules/4.4.1/init/bash
|
||||||
|
module use /opt/shared/modules/modulefiles
|
||||||
|
|
||||||
|
at end of file.
|
||||||
|
|
||||||
|
-Load the Modules from the top level file in the Project:
|
||||||
|
|
||||||
module load ./Modulefile
|
module load ./Modulefile
|
||||||
python3 -mvenv .venv
|
|
||||||
. .venv/bin/activate
|
-Install conan with:
|
||||||
pip3 install conan==1.59.0
|
|
||||||
cmake -S . -B build
|
pip install conan
|
||||||
cmake --build build -j30
|
|
||||||
|
-and run this comands to run conan with the C++11 library:
|
||||||
|
|
||||||
|
conan profile new default --detect --force
|
||||||
|
conan profile update settings.compiler.libcxx=libstdc++11 default
|
||||||
|
|
||||||
|
-Add conan to $PATH
|
||||||
|
|
||||||
|
#Build:
|
||||||
|
-Create folder "build" in SystemC-Components-Test project folder.
|
||||||
|
-Build the project with:
|
||||||
|
|
||||||
|
cmake ..
|
||||||
|
|
||||||
|
-compile
|
||||||
|
|
||||||
|
make -j4 #4 means number of cores where it is compiled.
|
||||||
|
|
||||||
|
|
||||||
|
#Run:
|
||||||
|
-from build folder run:
|
||||||
|
|
||||||
|
./bin/"binary-name" #binary name: zb. "sim_performance"
|
||||||
|
|
2
scc
2
scc
@ -1 +1 @@
|
|||||||
Subproject commit 3d5f733ed40ffdbd8f9f788a5a5075fe0797498c
|
Subproject commit e510457db91b95cc085cbd30cfadde4b06aa5c9d
|
Loading…
Reference in New Issue
Block a user