feat: add support for tty local debugger

This commit is contained in:
CJ van den Berg 2025-07-03 15:58:12 +02:00
parent 829a8d33e9
commit 2f7228cea6
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 35 additions and 3 deletions

View file

@ -18,6 +18,7 @@ pub var stack_trace_on_errors: bool = false;
pub const subprocess = if (builtin.os.tag == .windows) @import("subprocess_windows.zig") else @import("subprocess.zig");
pub const install_debugger = c.install_debugger;
pub const install_remote_debugger = c.install_remote_debugger;
pub const install_backtrace = c.install_backtrace;
pub const install_jitdebugger = c.install_jitdebugger;
pub const max_message_size = 8 * 4096;