Re: [Cegcc-devel] problem in structure packing

2007-09-04 Thread Danny Backx
On Tue, 2007-09-04 at 13:17 +0200, [EMAIL PROTECTED] wrote: > It is related to structure packing that seems to be sometimes incompatible > with > what WinCE API expects. See the example below : I'm not sure exactly what you suspect, but when I had such problems way back when I was young, the way

Re: [Cegcc-devel] porting cegcc

2007-09-04 Thread Pedro Alves
Danny Backx escreveu: > On Tue, 2007-09-04 at 13:55 +0200, [EMAIL PROTECTED] wrote: >> Hi, >> >> Is it possible to port the cegcc toolset to windows CE,so that it could be >> used >> for onboard compiling (like Pocket Gcc from Vitaly Vitaliy Pronkin). > > In theory, I guess this is possible. But

Re: [Cegcc-devel] problem in structure packing

2007-09-04 Thread Pedro Alves
[EMAIL PROTECTED] wrote: > Hi, > > the problem I report here may be a real bug or simply the fact I did not find > the correct option in cegcc ... > It is related to structure packing that seems to be sometimes incompatible > with > what WinCE API expects. See the example below : > > ===

Re: [Cegcc-devel] API missing (HeapCompact, CreateToolhelp32Snapshot)

2007-09-04 Thread Pedro Alves
Danny Backx wrote: > On Mon, 2007-09-03 at 21:01 +0200, pgeorges wrote: >> Danny Backx a écrit : >>> HeapCompact is described on MSDN to be present on Windows CE 5 or >>> higher; my device has an older WinCE. Therefore when I add HeapCompact >>> to src/cegcc/importlibs/defs/coredll.def , and create

Re: [Cegcc-devel] API missing (HeapCompact, CreateToolhelp32Snapshot)

2007-09-04 Thread pgeorges
I personaly create a CAB file with the 3 cegcc DLLs incorporated to distribute my application and ease its installation. If there were several versions of those DLLs, packaging would be harder. So could it be possible for those DLLs to detect on which WinCE version they run and dynamically provi

Re: [Cegcc-devel] porting cegcc

2007-09-04 Thread Danny Backx
On Tue, 2007-09-04 at 13:55 +0200, [EMAIL PROTECTED] wrote: > Hi, > > Is it possible to port the cegcc toolset to windows CE,so that it could be > used > for onboard compiling (like Pocket Gcc from Vitaly Vitaliy Pronkin). In theory, I guess this is possible. But getting this done is a *very* l

Re: [Cegcc-devel] API missing (HeapCompact, CreateToolhelp32Snapshot)

2007-09-04 Thread Danny Backx
On Mon, 2007-09-03 at 21:01 +0200, pgeorges wrote: > HeapCompact is indeed only available with WinCE 5 and higher, so it is > not so important. But CreateToolhelp32Snapshot is more important, as it > is present since Wince 3.0, so maybe it could be incorporated in binary > releases. > I will try

Re: [Cegcc-devel] API missing (HeapCompact, CreateToolhelp32Snapshot)

2007-09-04 Thread Danny Backx
On Mon, 2007-09-03 at 21:01 +0200, pgeorges wrote: > Danny Backx a écrit : > > HeapCompact is described on MSDN to be present on Windows CE 5 or > > higher; my device has an older WinCE. Therefore when I add HeapCompact > > to src/cegcc/importlibs/defs/coredll.def , and create a test application >

Re: [Cegcc-devel] porting cegcc

2007-09-04 Thread pascal . georges1
I was told that with eTcl (see www.evolane.com), tinyCC would be included, allowing the mix of Tcl and C code (no C++, it seems). Pascal Selon [EMAIL PROTECTED]: > Hi, > > Is it possible to port the cegcc toolset to windows CE,so that it could be > used > for onboard compiling (like Pocket Gcc f

Re: [Cegcc-devel] API missing (HeapCompact, CreateToolhelp32Snapshot)

2007-09-04 Thread Kevin O'Connor
Hi Pascal, On Mon, Sep 03, 2007 at 09:14:35AM +0200, [EMAIL PROTECTED] wrote: > Hi, > > I am developping a chess database application for Pocket PC > (http://prolinux.free.fr/scid/PPC.html), and I appreciate a lot to be able to > do > it under Linux and that cegcc provides an Unix layer. > > I

[Cegcc-devel] porting cegcc

2007-09-04 Thread mail
Hi, Is it possible to port the cegcc toolset to windows CE,so that it could be used for onboard compiling (like Pocket Gcc from Vitaly Vitaliy Pronkin). best regards Thomas Fritz - This SF.net email is sponsored by: Splun

[Cegcc-devel] problem in structure packing

2007-09-04 Thread pascal . georges1
Hi, the problem I report here may be a real bug or simply the fact I did not find the correct option in cegcc ... It is related to structure packing that seems to be sometimes incompatible with what WinCE API expects. See the example below : ===