Re: GNUmake v4.4 port on Windows with tcc

2022-11-05 Thread Eli Zaretskii
> From: "Christian Jullien" > Cc: , > , > > Date: Sat, 5 Nov 2022 17:03:44 +0100 > > Please note that even VisualC++ uses defines (in mapping.h) > /** > * Map stroll to _strtoi64 > * > * stroll does not properly map in Windows; this is needed to ensure calls to > * strtoll(const

RE: GNUmake v4.4 port on Windows with tcc

2022-11-05 Thread Christian Jullien
Please note that even VisualC++ uses defines (in mapping.h) /** * Map stroll to _strtoi64 * * stroll does not properly map in Windows; this is needed to ensure calls to * strtoll(const char *nptr, char **endptr, int base) will compile in Windows. */ #define strtoll _strtoi64 /** * Map strtou

Re: GNUmake v4.4 port on Windows with tcc

2022-11-05 Thread Eli Zaretskii
> From: Paul Smith > Cc: make-w32@gnu.org, tinycc-de...@nongnu.org > Date: Sat, 05 Nov 2022 10:18:55 -0400 > > On Thu, 2022-11-03 at 16:45 +0200, Eli Zaretskii wrote: > > > Of course it does. > > > > Thanks.  Paul, should I install this? > > Yes please thanks! Done.

Re: GNUmake v4.4 port on Windows with tcc

2022-11-05 Thread Paul Smith
On Thu, 2022-11-03 at 15:29 +0100, Christian Jullien wrote: > As side note, compiling GNUmake with cl x64 gives the following > warnings I believe I've examined these warnings in the past and they are not a problem: related to the ifdef spaghetti in parts of the code or else due to differences in

Re: GNUmake v4.4 port on Windows with tcc

2022-11-05 Thread Paul Smith
On Thu, 2022-11-03 at 16:45 +0200, Eli Zaretskii wrote: > > Of course it does. > > Thanks.  Paul, should I install this? Yes please thanks!