Re: [Cegcc-devel] mingw32ce and errno

2008-09-06 Thread Pedro Alves
On Wednesday 09 July 2008 07:32:35, [EMAIL PROTECTED] wrote: > but is there another option ? Yes, search the archives. > So why it can find windows.h and not errno.h Look closer to the error gcc is outputting, and notice which file and line the error is comming from. -- Pedro Alves

Re: [Cegcc-devel] mingw32ce and errno

2008-07-09 Thread forumer
Ok but in this case would it be possible that I define a coredllex.dll that would implement this errno ? In this case could I just remove the #include_next from existing errno.h and provides implementation ? So my sample code should compile with something like that : ./arm-mingw32ce-gcc testerrn

Re: [Cegcc-devel] mingw32ce and errno

2008-07-09 Thread Vincent Torri
Hey, I would like to understand how errno is handled with cegcc and more precisely with mingw32ce. see: http://cegcc.sourceforge.net/docs/using.html (at the bottom: "Apparently broken include files") regards Vincent Torri I know that on ce platforms errno doesn't exist but if I need to

[Cegcc-devel] mingw32ce and errno

2008-07-08 Thread forumer
Hi, I would like to understand how errno is handled with cegcc and more precisely with mingw32ce. I know that on ce platforms errno doesn't exist but if I need to build a third party library using the native OS libc and using errno how can I do? I always have the option to comment all the errno oc