From 872c387bad94784e1c1322bc8086124bdc0653b5 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Thu, 18 Sep 2025 00:32:18 -0700 Subject: [PATCH] let errors from MT to bubble up to linker's stdout and stderr --- src/linker/lnk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linker/lnk.c b/src/linker/lnk.c index f4f0f0bc..bb7491c5 100644 --- a/src/linker/lnk.c +++ b/src/linker/lnk.c @@ -394,7 +394,7 @@ lnk_merge_manifest_files(String8 mt_path, String8 out_name, String8List manifest OS_ProcessLaunchParams launch_opts = {0}; launch_opts.cmd_line = cmd_line; launch_opts.inherit_env = 1; - launch_opts.consoleless = 1; + launch_opts.consoleless = 0; OS_Handle mt_handle = os_process_launch(&launch_opts); if (os_handle_match(mt_handle, os_handle_zero())) { lnk_error(LNK_Error_Mt, "unable to start process: %S", mt_path);