13 Commits

Author SHA1 Message Date
eyck 4a74a73bee updates CMakeLists.txt and dbt-rise-tgc submodule 2025-03-14 19:45:21 +01:00
eyck e192c71104 updates submodules and adds cmake presets 2025-03-14 07:15:21 +01:00
eyck 140c2d67b1 updates dbt-rise-tgc 2025-02-13 13:41:38 +01:00
eyck 7d41bb9525 updates submodules 2025-02-12 20:45:47 +01:00
eyck b2f87e8fad updates dbt-rise-core and scc 2025-02-03 20:53:59 +01:00
eyck 27b23dce8d Merge branch 'develop' of https://git.minres.com/TGFS/TGC-ISS.git into develop 2025-02-03 20:52:52 +01:00
alex 2ff133732d forces clean build in Jenkins 2025-01-11 12:03:55 +01:00
eyck dee78d1279 updates scc 2025-01-08 14:45:21 +01:00
alex dfad138010 update submodules 2024-12-28 13:11:41 +01:00
eyck de4a6124e6 updates SCC 2024-12-23 20:15:32 +01:00
eyck d063650904 updates scc 2024-12-23 16:49:25 +01:00
eyck 8eed85377b updates dbt-rise-tgc 2024-12-06 15:51:12 +01:00
eyck fabceb7a93 updates submodules 2024-12-06 13:40:30 +01:00
7 changed files with 45 additions and 4 deletions
+1
View File
@@ -22,3 +22,4 @@
/.direnv /.direnv
/TGC_C_XRB/ /TGC_C_XRB/
/.envrc.eyck /.envrc.eyck
/.cache
+1 -1
View File
@@ -213,7 +213,7 @@ if(CMAKE_PROJECT_NAME STREQUAL "TGC-ISS")
FetchContent_Declare( FetchContent_Declare(
riscvfw riscvfw
GIT_REPOSITORY https://git.minres.com/Firmware/Firmwares.git GIT_REPOSITORY https://git.minres.com/Firmware/Firmwares.git
GIT_TAG main GIT_TAG develop
GIT_SHALLOW OFF GIT_SHALLOW OFF
UPDATE_DISCONNECTED ON UPDATE_DISCONNECTED ON
) )
+39
View File
@@ -0,0 +1,39 @@
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "Debug",
"displayName": "Debug build",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "Release",
"displayName": "Release build",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}
],
"buildPresets": [
{
"name": "Debug",
"description": "Debug build",
"displayName": "Debug"
}
]
}
Vendored
+1
View File
@@ -48,6 +48,7 @@ pipeline {
done done
''' '''
sh 'conan profile new default --detect --force' sh 'conan profile new default --detect --force'
sh 'rm -rf build'
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -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' sh 'cmake --build build -j'
sh 'build/dbt-rise-tgc/tgc-sim --isa ?' sh 'build/dbt-rise-tgc/tgc-sim --isa ?'
+1 -1
Submodule scc updated: 66d3b8f9ee...7960982947