Hello, thanks for the answer. But it doesn't help. I searched the complete harddisk for it, but only one version exists. Any other hints ? Regards, Martin ... ...
Hi Martin, Well I am not sure but you could 1. Check to see if your Cygwin1.Dll is in the PATH 2. uninstall both cygwin and arm tools and installing them...
There are some differences between 4 and 3.4.x, at least in the way variables are allocated. You are not alone: the Linux kernel would not build under 4, but...
Hello embeddedganitor, Thank you for your answer. I have thought of a few tests that I can probably do to validate a few subsystems individually and work on...
... A bug (don't recall exactly which one) in 3.4.3 was getting in our way. It was fixed in 3.4.4, but gnuarm didn't update the 3.4 series binaries, and the...
... from ... advantages ... Perhaps there is a better optimiser. newlib is independent of gcc. You can (well at least in theory) use any version newlib with...
... know ... scripts, ... the ... LED ... Hi Andy I recently posted a simple project over at the AT91SAM7 group. I have since augmented this with a few more...
Hi all, I have some problems using sprintf from newlib. When using sprintf some of my gobal variables get overwritten. I discoverd this by stepping into the...
Hi Marko, sprintf calls malloc(), hence, you probably do not have enough heap space setup. Increase this in your linker control file. Read the Gatliff doc on ...
Thanks, Probably by using malloc newlib has to be initialized too. Are there any special requirements in the linker script, e.g adding a special heap section?...
Hi Heap is allocated along with stack after _end in your linker script i.e. [start snip...] __end_bss = . ; /* define symbol name _end, heap start address */ ...
Hi, I have downloaded the "Nick Randel" JLink server, and am trying to workout how to use it. It seems other people have had success, so if you have any...
... if ... Me too. I have had limited success with Jlinkserver. SInce I also have a bdi2000 available, my motivation to get this working has not been very...
... This is one of the real downsided of newlib. sprintf needs a whole swag of stuff. sscanf even wants printf! The total footprint isn't very big, but the...
... Hash: RIPEMD160 ... Particularly for snprintf there are some good alternatives out there. For example, check out Patrick Powell's version and derivatives...
Hello all, I am really surpised. I thought Newlib is a very versatile and compact library supporting vast variety of processors/controllers. Is there any...
... I was pretty suprised myself too when I first found out. You can download all the newlib code and fiddle as much as you want. The other posting talks of...
... Hello, which posting? Yes one can twiddle with the code, but its not going to be easy :( !! What everybody would love to have is a precompiled library with...
... A pre-compiled library is not that important. It is very simple to build newlib from source. What is more of an issue though is getting to know it well...
Hello Charles manning, Thank you very much for the reply. Since I am a starter with this GCC could you give some references to where I can look for on...
... Newlib is at http://sources.redhat.com/newlib/ There are various notes on what to do there. There is also Bill Gatliff's doc on newlib configuration at ...
Does anybody have experiences using GNUARM under MACOSX? I installed the binaries for MACOSX (I think it was under local). But how do I start compiling now in...
... Also since we've been talking about ARM microcontrollers take a look at http://www.aeolusdevelopment.com/Articles/download.html for an example of the...
... at ... example of ... I ... sbrk(), ... not a ... From what I see, this is an adaptation of newlib to redirect the printfs etc to a serial port, and do...