From a3578379fbd36b663032869a15a0c28c32be4cf6 Mon Sep 17 00:00:00 2001 From: wanjochan Date: Thu, 17 Sep 2020 10:26:16 +0800 Subject: [PATCH] when tcc1 omit: use main() directly --- tccpe.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tccpe.c b/tccpe.c index 4f7f62bd..e8fd5cf4 100644 --- a/tccpe.c +++ b/tccpe.c @@ -1881,8 +1881,14 @@ static void pe_add_runtime(TCCState *s1, struct pe_info *pe) pe_type = PE_EXE; if (find_elf_sym(symtab_section, "wmain")) unicode_entry = PE_EXE; + else + /* use main() directly when TCC1 is "" */ + if (strlen(TCC_LIBTCC1)==0){ + start_symbol = "_main"; + } } + if(!start_symbol) start_symbol = TCC_OUTPUT_MEMORY == s1->output_type ? PE_GUI == pe_type ? (unicode_entry ? "__runwwinmain" : "__runwinmain") @@ -2047,3 +2053,5 @@ ST_FUNC int pe_output_file(TCCState *s1, const char *filename) } /* ------------------------------------------------------------- */ +/* vim: set expandtab ts=4 sw=4 sts=4 tw=80 :*/ + -- 2.11.4.GIT