successfully cross-building behavior tests for windows

This commit is contained in:
Andrew Kelley
2017-08-30 17:01:14 -04:00
parent 41da9fdb69
commit 021155db5b
4 changed files with 25 additions and 9 deletions

View File

@@ -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));