From 021155db5b3cdbe524806ed549d96bb56e611a01 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 30 Aug 2017 17:01:14 -0400 Subject: successfully cross-building behavior tests for windows --- src/codegen.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/codegen.cpp') 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)); -- cgit v1.2.3