All of us rely on the standard library whenever we are writing a C or C++ program. However, most of the time we don’t actually get to see what’s happening under the hood.
When we started writing and maintaining our own libc implementation, we were quite surprised to see just how old and low quality some of the commonly used libc function implementations were. Over the years, we’ve been working on modernizing some of this code. We also encountered and solved a number of interesting programming and compilation challenges as a result of getting our libc to work on a variety of systems.
Once we started using C++, we expanded into maintaining our own libcpp implementation, which is a slightly modified version of the LLVM C++ and C++abi libraries. This implementation is designed to work with our libc and to support microcontroller usage.
This members-only course is meant to serve as a compendium of interesting lessons learned from writing and maintaining C and C++ standard libraries. We will also be featuring implementation analyses, refactoring demonstrations, and tooling integrations as we continue to maintain and improve the library.
