per-target option of automatically debugging subprocesses, or not

This commit is contained in:
Ryan Fleury
2024-11-14 14:18:35 -08:00
parent 95fe497056
commit 81c7c7a7c4
7 changed files with 75 additions and 8 deletions
+1
View File
@@ -2068,6 +2068,7 @@ d_tick(Arena *arena, D_TargetArray *targets, D_BreakpointArray *breakpoints, D_P
msg->stdout_path = stdout_path;
msg->stderr_path = stderr_path;
msg->stdin_path = stdin_path;
msg->debug_subprocesses = target->debug_subprocesses;
msg->env_inherit = 1;
MemoryCopyArray(msg->exception_code_filters, exception_code_filters);
MemoryCopyStruct(&msg->meta_evals, meta_evals);
+1
View File
@@ -17,6 +17,7 @@ struct D_Target
String8 stdout_path;
String8 stderr_path;
String8 stdin_path;
B32 debug_subprocesses;
String8List env;
};