updates dbt-rise submodules

This commit is contained in:
2025-07-28 19:14:54 +02:00
parent 20660d52ab
commit 084d8e0fd6
6 changed files with 7 additions and 11 deletions

2
.vscode/launch.json vendored
View File

@@ -42,7 +42,7 @@
"name": "Launch VP",
"cwd": "${workspaceRoot}",
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
"arguments": "--isa tgc5c -f fw/hello-world/hello",
"arguments": "-v TRACEALL --isa tgc5c -f fw/hello-world/hello",
"openGdbConsole": true
},
],

View File

@@ -12,4 +12,4 @@ if { $distro == "CentOS" && ![info exists ::env(PROJECT)] && ![info exists ::env
puts stderr "Don't forget to execute 'scl enable devtoolset-7 llvm-toolset-7 bash'"
}
module load tools/gcc-riscv64-unknown-elf/13 tools/cmake/3.28 tools/utilities
module load tools/gcc-riscv64-unknown-elf/13 tools/cmake/3.28 tools/utilities tools/vscode

2
scc

Submodule scc updated: 3179717f71...a6cdc7aead

View File

@@ -41,14 +41,10 @@ CLIParser::CLIParser(int argc, char* argv[])
auto log_level = vm_["verbose"].as<scc::log>();
auto log_level_num = static_cast<unsigned>(log_level);
LOGGER(DEFAULT)::reporting_level() = logging::as_log_level(log_level_num > 6 ? 6 : log_level_num);
;
LOGGER(DEFAULT)::print_time() = false;
LOG_OUTPUT(DEFAULT)::ostream() = &std::cout;
LOGGER(connection)::reporting_level() =
logging::as_log_level(log_level_num > 4 ? log_level_num - 1 : log_level_num);
;
LOGGER(connection)::print_time() = false;
LOG_OUTPUT(connection)::ostream() = &std::cout;
LOGGER(dbt_rise_iss)::reporting_level() =
logging::as_log_level(log_level_num > 4 ? log_level_num - 1 : log_level_num);
///////////////////////////////////////////////////////////////////////////
// configure logging
///////////////////////////////////////////////////////////////////////////