I didn't have the time earlier, sorry about that. I did get around to
this today though. I've rebuilt the cegcc-cegcc-0.51.0-1.i586.rpm and
uploaded it to SourceForge moments ago.
I've tested a couple of sample applications, and they do work on my PDA.
The old RPM is gone, the new one is in the s
-
From: [EMAIL PROTECTED] on behalf of Pedro Alves
Sent: Tue 12/18/2007 5:19 PM
To: Pavel Chernikov
Cc: cegcc-devel@lists.sourceforge.net
Subject: Re: [Cegcc-devel] stdio problems with 0.51.0 - fprintf / fputs /
fwrite..
Pavel Chernikov wrote:
> The same code works just fine in 0
Pavel Chernikov wrote:
> The same code works just fine in 0.50.
>
> Any suggestions are greatly appreciated.
>
Just to be sure,
did you also update the dll on the device, or just updated
the toolchain on the dev machine ?
--
Pedro Alves
-
I'll look into this later tonight. Maybe the old "don't compile me with
optimize" problem bit me again.
Danny
On Mon, 2007-12-17 at 20:51 -0500, Pavel Chernikov wrote:
> Hi All,
>
> I'm having trouble running the following code on my Axim X51v:
>
> #include
> #include
> #include
> #i
Hi All,
I'm having trouble running the following code on my Axim X51v:
#include
#include
#include
#include
#define FN "fibo222.txt"
int fibo(int n)
{
if (n < 3)
return 1;
return fibo(n-1) + fibo(n-2);
}
int APIENTRY WinMain(HINSTANCE a,HINSTANCE b,LPWSTR c,int d)
{
FIL