Support GDB server for cargo osdk run

Feature: generate launch config for debugging via VS Code.
This commit is contained in:
fgh1999
2024-03-20 17:53:52 +00:00
committed by Tate, Hongliang Tian
parent a18fc9eb25
commit 5fd3b1bc2f
9 changed files with 305 additions and 21 deletions

View File

@ -3,14 +3,15 @@
//! This module contains subcommands of cargo-osdk.
mod build;
mod debug;
mod new;
mod run;
mod test;
mod util;
pub use self::{
build::execute_build_command, new::execute_new_command, run::execute_run_command,
test::execute_test_command,
build::execute_build_command, debug::execute_debug_command, new::execute_new_command,
run::execute_run_command, test::execute_test_command,
};
/// Execute the forwarded cargo command with args containing the subcommand and its arguments.