diff options
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index a57e33b51f..ef8169b789 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -4914,6 +4914,12 @@ static void define_builtin_compile_vars(CodeGen *g) { static void init(CodeGen *g) { if (g->module) return; + + if (g->is_test_build) { + g->windows_subsystem_windows = false; + g->windows_subsystem_console = true; + } + assert(g->root_out_name); g->module = LLVMModuleCreateWithName(buf_ptr(g->root_out_name)); |
