[Cegcc-devel] gdbproxy progress.

2006-11-08 Thread Pedro Alves
Hi all, Just to inform you all, that I made some progress with gdbserver. I can now start gdbserver manually on the device, it loads the app to debug, and waits for gdb host. I can then connect with gdb using target remote, and issue a continue, and the app runs ok. Nothing else work correctly,

Re: [Cegcc-devel] [commit] gcc WinCE support revamping.

2006-11-08 Thread Pedro Alves
Pedro Alves wrote: > You can get a lot more info on this by googling for "-ms-bitfields" option. > For the record, you disable this globally with -mno-ms-bitfields, or on a struct by struct basis using __attribute__((gcc_struct)), or __attribute__((ms_struct)). Cheers, Pedro Alves -

Re: [Cegcc-devel] [commit] gcc WinCE support revamping.

2006-11-08 Thread Pedro Alves
Hi Jan, Jan Rinze wrote: > Hi all, > > I am a bit worried and confused about this patch: > > This patch made the way we align and size structs and bitfields match the way MSFT does with their tools. That is part of the ABI we must match. I'll give you an example where this was failing before

Re: [Cegcc-devel] [commit] gcc WinCE support revamping.

2006-11-08 Thread Jan Rinze
Hi all, I am a bit worried and confused about this patch: Op di 31-10-2006, om 00:59 schreef Pedro Alves: > Hi all, > > I am commiting this patch that cleans up gcc's support of Windows CE for > arm. > > This patch fixes some major bugs/annoyances we had: > > - __declspec(dllexport/dllimport

Re: [Cegcc-devel] Brutally kicked out of cegcc development

2006-11-08 Thread Pedro Alves
Danny Backx wrote: >On Tue, 2006-11-07 at 20:41 +, Pedro Alves wrote: > > >>You've got to be kidding... Your project? >> >> > >The sentence was meant to draw your attention to the fact that you're >dealing with people here, not with slaves. People react oddly when you >make little or no

Re: [Cegcc-devel] Using GAPI

2006-11-08 Thread Jan Rinze
Hi Matthew, Op di 07-11-2006, om 17:47 schreef Matthew Kille: > Hi All, > > I'm trying to build a GAPI application using cegcc. As there doesn't > seem to be a import library ready made for this, I have attempting to > make one, but without much success. --snip-- > Where am I going wrong? Or am

Re: [Cegcc-devel] Brutally kicked out of cegcc development

2006-11-08 Thread janrinze
Hi Pedro and mailinglist followers.. I have asked before to keep personal futes out of the mailing list and be more professional. Due to the way Pedro is managing things I have not even considered getting involved in this project. It would have been nice to have a gcc compiler that compiles we

Re: [Cegcc-devel] Brutally kicked out of cegcc development

2006-11-08 Thread Danny Backx
On Tue, 2006-11-07 at 20:41 +, Pedro Alves wrote: > You've got to be kidding... Your project? The sentence was meant to draw your attention to the fact that you're dealing with people here, not with slaves. People react oddly when you make little or no agreements with them on how to cooperate,

[Cegcc-devel] [commit] Make char signed by default.

2006-11-08 Thread Pedro Alves
Hi all, While looking into porting gdb/gdbserver, I noticed that our char was unsigned by default, while MSVC defaults to signed. I committed the attached patch to make us compatible with MSVC. This may introduce subtil bugs if you relied on the default signedness of char, but I think it is wo