Re: [Cegcc-devel] Smartphone Example

2008-12-19 Thread Danny Backx
Thanks, committed. Danny On Fri, 2008-12-19 at 10:09 +0100, mosfet wrote: > On Thu, 18 Dec 2008 20:29:30 +0100, Danny Backx > wrote: > > Looks clean :-) > > > > Have you checked whether windres still works with other existing RC > > files ? > > > > Danny > > > yes I ckeched and no

Re: [Cegcc-devel] Smartphone Example

2008-12-19 Thread mosfet
On Thu, 18 Dec 2008 20:29:30 +0100, Danny Backx wrote: > Looks clean :-) > > Have you checked whether windres still works with other existing RC > files ? > > Danny > yes I ckeched and now we support all configurations, for instance if we take the HelloSP as example : NO COMMA: -

Re: [Cegcc-devel] Smartphone Example

2008-12-18 Thread Danny Backx
Looks clean :-) Have you checked whether windres still works with other existing RC files ? Danny On Thu, 2008-12-18 at 13:36 +0100, mosfet wrote: > Ok one windres fix it and he will commit it into binutils: > > Index: src/binutils/rcparse.y > ===

Re: [Cegcc-devel] Smartphone Example

2008-12-18 Thread mosfet
Ok one windres fix it and he will commit it into binutils: Index: src/binutils/rcparse.y === --- src.orig/binutils/rcparse.y +++ src/binutils/rcparse.y @@ -1248,6 +1248,10 @@ rcdata_data: $1.last->next = ri; $$

Re: [Cegcc-devel] Smartphone Example

2008-12-16 Thread Danny Backx
It probably is but I don't have the time for it right now. Danny On Tue, 2008-12-16 at 21:37 +0100, mosfet wrote: > Hum actually it works but couldnt' be possible to fix windres to accept > this syntax with comma ? > > > > > On Tue, 16 Dec 2008 17:23:54 +0100, Danny Backx > wrote: >

Re: [Cegcc-devel] Smartphone Example

2008-12-16 Thread mosfet
Hum actually it works but couldnt' be possible to fix windres to accept this syntax with comma ? On Tue, 16 Dec 2008 17:23:54 +0100, Danny Backx wrote: > You need to make sure that you have the right macros defined. Here's a > Makefile that works for me : > TARGET=arm-mingw32ce > CC= ${TAR

Re: [Cegcc-devel] Smartphone Example

2008-12-16 Thread mosfet
Could you post your archive because when I try I still get some errors but since I am not using an official cegcc version but a "home made" I may have forgotten to report some modifications. Thanks On Tue, 16 Dec 2008 17:23:54 +0100, Danny Backx wrote: > You need to make sure that you have the

Re: [Cegcc-devel] Smartphone Example

2008-12-16 Thread Danny Backx
You need to make sure that you have the right macros defined. Here's a Makefile that works for me : TARGET=arm-mingw32ce CC= ${TARGET}-gcc ${CFLAGS} CCC=${TARGET}-g++ ${CFLAGS} CFLAGS= -D_WIN32_WCE=0x0500 -D_WIN32_IE=0x0500 WINDRES=${TARGET}-windres ${CFLAGS} hellosp.exe:hellos

Re: [Cegcc-devel] Smartphone Example

2008-12-15 Thread mosfet
Hi, I don't want to copy/paste from MSDN, so could you send me your project ? And what command line are you using ? On Mon, 15 Dec 2008 13:46:05 -0600, "Jared Waltzer" wrote: > I am trying to compile the example here with the mingw32ce compiler: > http://msdn.microsoft.com/en-us/library/ms931

[Cegcc-devel] Smartphone Example

2008-12-15 Thread Jared Waltzer
I am trying to compile the example here with the mingw32ce compiler: http://msdn.microsoft.com/en-us/library/ms931632.aspx I get a syntax error in the .rc file. Removing the rc file I get an undefined reference for SHCreateMenuBar. Am I doing something wrong, or is this not supported at this point