Libraries and your OS
Posted: Mon Jul 16, 2007 7:55 am
Have you ported the C or C++ standard libraries to your OS? Or do you have completely independent functions?
From what I've read, if I port newlib and try to get printf working, I have to represent my console as a file and modify my VFS to support it. So for now, I've decided to make my own (non-compliant) C++ library.
With the OO approach I'm trying to take, I found the standard libraries a little to restricting. But nothing says at a later stage I couldn't make a standard C or C++ library that wraps around mine.
From what I've read, if I port newlib and try to get printf working, I have to represent my console as a file and modify my VFS to support it. So for now, I've decided to make my own (non-compliant) C++ library.
With the OO approach I'm trying to take, I found the standard libraries a little to restricting. But nothing says at a later stage I couldn't make a standard C or C++ library that wraps around mine.