I am looking for a small libc for embedded use with freertos on a ARM7 microcontroller. I have looked at newlib, but it is a bit too complex for my needs. Newlib calls malloc() in a number of functions (e.g. printf()), which is not good for small embedded realtime systems.

Does anyone know of a small, portable, open source libc implementation that will fit my application?

link|improve this question
What OS/kernel are you using? That's key to determining what your choices are. – R.. Feb 7 '11 at 19:01
I'm using freertos - freertos.org – GT. Feb 8 '11 at 21:46
feedback

7 Answers

up vote 4 down vote accepted

PDCLib might fit your needs. It's still incomplete, though, and probably in need of a lot more real-world testing. Its author goes by DevSolar here on SO.

link|improve this answer
feedback

You can check out the LGPL µClibc, which is supposed to be close to glibc but much more suited to embedded systems.

It also has a page referencing other open source C libraries, including newlib and eCos, which may be more suited for non-Linux environments.

link|improve this answer
Does uClibc support anything else than linux? – GT. Feb 7 '11 at 13:35
Nope. See my comment on the original question. – R.. Feb 7 '11 at 19:02
feedback

I use newlib on my Cortex_M3 with 32kB RAM, and to eliminate the malloc() you can use siprintf() or sniprintf().

Pro: No more calls to malloc().

Con: It does not suport formatting float and double, and is not really portable this way.

link|improve this answer
feedback

If you use newlib and do not implement the sbrk syscall, then any function you use that requires malloc will generate a linker error, which will prevent you from inadvertently using a call that requires dynamic memory . So I would suggest that you do that, and then simply avoid those functions that cause the linker error. You can modify or override any library functions you do not wish to use.

link|improve this answer
feedback

printf() is not good for small embedded realtime systems!

Actually it is worse than malloc in many ways. Variable argument lists, very complex formatting, float number support when you don't need it etc etc. printf() comes with an enormous overhead, and the compiler will not be able to reduce it, as every parameter passed to it is evaluated in runtime.

printf() is perhaps ok for hobbyists and beginners still learning C. But if you are a professional programmer, you really ought to write your own serial monitor / LCD routines. You will dramatically improve the program performance and flash consumption.

link|improve this answer
1  
Though technically not an answer, I liked it. – Amigable Clark Kant Feb 7 '11 at 14:03
It is an answer. For a small embedded realtime system, you shouldn't be using libraries stdio and stdlib in the first place! MISRA-C bans stdio entirely, for example. – Lundin Feb 7 '11 at 14:18
It depends ... I would never call printf() from a real time context, but I don't see any big problems using printf() in non time critial tasks. Calling malloc() should be avoided as much as possible because task creation needs malloc() for the per-task stack frame, and heap fragmentation can quickly lead to OOM situations. It is common to configure freertos with malloc(), but without a functional free() because frequent memory allocation/deallocations on systems with very little memory is considered too "risky". – GT. Feb 7 '11 at 14:31
6  
There is nothing wrong with using printf in embedded systems. There's something wrong with printf implementations that call malloc and do all sorts of useless things. A simple printf implementation without floating point (or that ignores exactness issues when printing floating point) and without POSIX i18n %n$ argument specifiers, can be implemented in about 2k of code, and allows the calling application to be much smaller and simpler than if it had to duplicate printf-like functionality all over the place. – R.. Feb 7 '11 at 19:00
1  
@Lundin: As Chris said, there's a big range of embedded systems, and often conditions like realtime (bounded-time operations) and failure-case-free are more important than extremely small memory size. I'd be a lot happier with an embedded device that uses 1 MB of memory but always works because I know where allocations take place than a device that "normally" uses 128 kB and has 256 kB of physical memory, but no strict bounds on usage and fails to do its job when an allocation fails. – R.. Feb 10 '11 at 11:38
show 10 more comments
feedback

I had similar needs and found that klibc fit it quite well. The only downside (for commercial use) is the GPL license. I have hacked a minimal version of it here.

This is even more limited PDCLib, and suitable if you just need a few basic functions such as printf and strtok. Compiles to just 4kB with all functions included.

link|improve this answer
feedback

Look into uClibc and EGLIBC, perhaps.

link|improve this answer
1  
OP is apparently not using Linux, so these Linux-based choices will not be very helpful.. – R.. Feb 7 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.