Displaying 1 result from an estimated 1 matches for "ean9".
Did you mean:
ea19
2015 Mar 11
5
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
...compiling glibc using llvm may not be a proper option. On the other hand,
according to:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/047088.html
llvm could be able to compile newlib, thus people consider newlib as an
alternative. However, according to:
http://www.embecosm.com/appnotes/ean9/ean9-howto-newlib-1.0.html#id2711887
newlib intends to support binaries for bare metal (no OS) software. It
implements only the hardware independent parts (e.g libc and libm) and
leave a stub for each hardware dependent syscall (e.g everything in
libgloss).
In fact I tried to compile a simple &qu...