Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread Christian Jullien
; Sent: samedi 10 février 2018 18:32 > To: tinycc-devel@nongnu.org > Subject: Re: [Tinycc-devel] "_winstart not defined" > > k2tom wrote: >> tcc -o test.exe test.c -mwindows > -mwindows nas no effect. TCC will create a GUI executable > automatically if th

Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread grischka
urs. In case of problems use http://download-mirror.savannah.gnu.org/releases/ -- gr C. -Original Message- From: Tinycc-devel [mailto:tinycc-devel-bounces+eligis=orange...@nongnu.org] On Behalf Of grischka Sent: samedi 10 février 2018 18:32 To: tinycc-devel@nongnu.org Subject: Re: [Tinycc-de

Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread Christian Jullien
org Subject: Re: [Tinycc-devel] "_winstart not defined" k2tom wrote: > tcc -o test.exe test.c -mwindows -mwindows nas no effect. TCC will create a GUI executable automatically if there is a WinMain function. > tcc: _winstart not defined I suspect the libtcc1.a that you once

Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread grischka
k2tom wrote: tcc -o test.exe test.c -mwindows -mwindows nas no effect. TCC will create a GUI executable automatically if there is a WinMain function. tcc: _winstart not defined I suspect the libtcc1.a that you once did build yourself is missing files. See

Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread KHMan
On 2/10/2018 5:07 PM, Daemon Magic wrote: Try to use your mingw-built tcc to compile your test.c example, if it compiles w/o errors, your tcc built with itself has some problems. I don't have any experience using a Win32 tcc, so I'll leave it to those who have done so to respond. If there is

Re: [Tinycc-devel] "_winstart not defined"

2018-02-10 Thread Daemon Magic
Try to use your mingw-built tcc to compile your test.c example, if it compiles w/o errors, your tcc built with itself has some problems. 2018-02-10 7:09 GMT+02:00 k2tom : > My original "current release" of 0.9.25 came from tcc-0.9.25.tar.bze > (5/20/2009). (This has the

Re: [Tinycc-devel] "_winstart not defined"

2018-02-09 Thread k2tom
My original "current release" of 0.9.25 came from tcc-0.9.25.tar.bze (5/20/2009). (This has the sources.. but NOT the binaries.) I used MinGW to build TCC from those sources. Then I used this newly-minted TCC to build a newer TCC from the sources. (I just wanted to verify that one could in

Re: [Tinycc-devel] "_winstart not defined"

2018-02-09 Thread KHMan
On 2/9/2018 10:56 PM, Daemon Magic wrote: Hi, what is exact command line you're trying to exec? It is better to reply to k2tom/Tom's original e-mail, since I snipped some things out. Tom should also tell us where the tcc binaries came from, note that he mentioned "(0.9.25+)" in the first

Re: [Tinycc-devel] "_winstart not defined"

2018-02-09 Thread Daemon Magic
Hi, what is exact command line you're trying to exec? 2018-02-07 18:57 GMT+02:00 KHMan : > On 2/8/2018 12:19 AM, k2tom wrote: > [snip snip] > >> I was "just curious" and I tried using TinyCC to build the Windows >> "applications" from the "Forger's Win32API Tutorial" (a great

Re: [Tinycc-devel] "_winstart not defined"

2018-02-07 Thread KHMan
On 2/8/2018 12:19 AM, k2tom wrote: [snip snip] I was "just curious" and I tried using TinyCC to build the Windows "applications" from the "Forger's Win32API Tutorial" (a great (imo) introduction to Win32 programming). (Normally I use Cygwin GCC and/or MinGW GCC to build these example programs.