aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-10-14 20:12:15 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-10-14 20:12:15 -0400
commitfd7654e4e80f59e18bfaf7ba4872fefcd74feeb5 (patch)
treea7f7582bc03d4f0a562dfef581613412641474a3 /src/codegen.cpp
parentf54aff46721b04fe43b645f27d3c4dbb8d2cc74d (diff)
downloadzig-fd7654e4e80f59e18bfaf7ba4872fefcd74feeb5.tar.gz
zig-fd7654e4e80f59e18bfaf7ba4872fefcd74feeb5.zip
build-exe allows direct export of WinMainCRTStartup
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 03fa976b2e..985e390758 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -5213,7 +5213,8 @@ static void gen_root_source(CodeGen *g) {
assert(g->root_out_name);
assert(g->out_type != OutTypeUnknown);
- if (!g->is_test_build && g->zig_target.os != ZigLLVM_UnknownOS && !g->have_c_main && !g->have_winmain &&
+ if (!g->is_test_build && g->zig_target.os != ZigLLVM_UnknownOS &&
+ !g->have_c_main && !g->have_winmain && !g->have_winmain_crt_startup &&
((g->have_pub_main && g->out_type == OutTypeObj) || g->out_type == OutTypeExe))
{
g->bootstrap_import = add_special_code(g, create_bootstrap_pkg(g, g->root_package), "bootstrap.zig");