tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] Win32: TinyC subsystem GUI


From: Timo VJ Lähde
Subject: [Tinycc-devel] Win32: TinyC subsystem GUI
Date: Fri, 2 Apr 2010 08:28:40 +0300

If i compile test-gui.c with this commandline:
tcc.exe test-gui.c -nostdlib -Wl,--subsystem,gui

test-gui.exe is still commandline program PE_EXE and
it does not follow pe.subsystem value that should be 2 PE_GUI
and should use _winstart startpoint.

--- test-gui.c ---
int _winstart(void)
{
return 0;
}
--------------------------------------------------------
With this patch it's possible to use _winstart without runtime libraries:
tcc.exe test-gui.c -nostdlib
--------------------------------------------------------
--- a\tccpe.c Thu Jan 14 22:00:04 2010
+++ b\tccpe.c Wed Mar 10 19:29:23 2010
@@ -1730,7 +1730,8 @@
    unsigned long addr = 0;
    int pe_type = 0;

-    if (find_elf_sym(symtab_section, PE_STDSYM("WinMain","@16")))
+    if (find_elf_sym(symtab_section, PE_STDSYM("WinMain","@16"))
+        || find_elf_sym(symtab_section, "_winstart"))
        pe_type = PE_GUI;
    else
    if (TCC_OUTPUT_DLL == s1->output_type) {
--------------------------------------------------------





reply via email to

[Prev in Thread] Current Thread [Next in Thread]