From d39fad0fbe3382b6386391af3e6da752d841a0e4 Mon Sep 17 00:00:00 2001 From: Mateo Rodrigo Argudo Arrieta Date: Fri, 2 Jul 2021 15:32:13 +0200 Subject: [PATCH] Updated requirements requests and compiling steps for environment set-up #TODO add specific requirements and versions of the modules and the conanfile.txt setup --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 0198472..cf32cbe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ # SystemC-Components-Test Examples and tests for the SystemC-Components + +In Console: + + -Check for needed modules in ~/.bashrc #TODO add the specific requirements and versions of the modules + they should be available directly in the linux installation 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. + + -Install conan and run this comands: + + module load ./Modulefile + + conan profile new default --detect --force + conan profile update settings.compiler.libcxx=libstdc++11 default + + -Add conan to $PATH + +In SystemC Project: + + -Check conanfile.txt for anomalies and requirements. #TODO add specific requirements.