Page 1 of 1
CLib?
Posted: Sun Aug 10, 2003 2:54 am
by Solar
Every OS needs a C standard library. What are you guys using? Are you porting glibc? newlib? Do you write your own? Something Completely Different (tm)?
As one not being happy with the GPL, would there be interest in a Public Domain C library, for OS developers to toy with?
Re:CLib?
Posted: Sun Aug 10, 2003 3:26 am
by Tim
I'm writing my own. The functions are either OS-dependent, or easy enough to write myself.
Re:CLib?
Posted: Sun Aug 10, 2003 4:02 am
by Therx
For some functions I found it fun to write my own (e.g. how would you do a square root?) But most will come from newlib I expect and eventually I will have to replace my math with the newlib ones as they are probally much quicker
Re:CLib?
Posted: Sun Aug 10, 2003 1:36 pm
by Tux
I am thinking to add the CLib, but not as the standard one. Just for compatbility.
Re:CLib?
Posted: Mon Aug 11, 2003 1:20 am
by Pype.Clicker
i was thinking at porting the Gnu version of libc, but i admit i'm pretty unaware of what amount of work it might require so i'd rather delegate this to some co-worker (if i find geeks that are interrested enough
Re:CLib?
Posted: Mon Aug 11, 2003 2:37 am
by mystran
One might also want to look at uLibC or dietLibc, which are smaller than GNU libc. No idea though if they are actually any faster to port, as they are designed to be small.