Compare commits
3 Commits
3b6f7b5e83
...
bea38f761d
Author | SHA1 | Date | |
---|---|---|---|
bea38f761d | |||
405bae926c | |||
9c0cb351fe |
@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
cmake_minimum_required(VERSION 3.20)
|
||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/scc/cmake)
|
||||
|
||||
project(TGC-ISS VERSION 1.0.0 LANGUAGES CXX)
|
||||
@ -12,7 +12,7 @@ if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS")
|
||||
option(FW_BUILD "Enable the automatic download and build of some firmware to run on the ISS" OFF)
|
||||
option(ENABLE_SANITIZER "Enable address sanitizer" OFF)
|
||||
option(ENABLE_CLANG_TIDY "Add clang-tidy and clang-format automatically to builds" OFF)
|
||||
option(WITH_TCC "Build TCC backend" ON)
|
||||
option(WITH_TCC "Build TCC backend" OFF)
|
||||
option(WITH_LLVM "Build LLVM backend" OFF)
|
||||
option(WITH_ASMJIT "Build ASMJIT backend" ON)
|
||||
|
||||
|
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -31,7 +31,7 @@ pipeline {
|
||||
stage("build TGC-ISS"){
|
||||
steps {
|
||||
sh 'conan profile new default --detect --force '
|
||||
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=OFF -DWITH_LLVM=ON'
|
||||
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
|
||||
sh 'cmake --build build -j'
|
||||
}
|
||||
}
|
||||
@ -50,6 +50,12 @@ pipeline {
|
||||
sh "python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp"
|
||||
}
|
||||
}
|
||||
stage("Test tcc") {
|
||||
steps {
|
||||
sh "mkdir tcc"
|
||||
sh "python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim build/dbt-rise-tgc/tgc-sim -w tcc --dockerless --backend tcc"
|
||||
}
|
||||
}
|
||||
stage("Test asmjit") {
|
||||
steps {
|
||||
sh "mkdir asmjit"
|
||||
|
Submodule dbt-rise-core updated: 4f6c718143...f78cc53a33
Submodule dbt-rise-tgc updated: 58fb815f32...37db31fb4b
Reference in New Issue
Block a user