Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-16 | LibM: Move the math standard library to LibC | Tim Schumacher | |
2022-09-05 | LibDl: Move the `dlfcn` implementation to LibC | Tim Schumacher | |
2022-07-19 | LibPthread: Move the pthread and semaphore implementation to LibC | Tim Schumacher | |
This additionally adds some compatibility code to redirect linking attempts for LibPthread to LibC instead. | |||
2021-10-17 | Toolchain: Introduce stubs for core system libraries | Daniel Bertalan | |
This allows the linker to link against these dynamic libraries when compiling libc++/libunwind, without having to do a separate bootstrapping LibC build. Without this change, libc++ would fail to pick up the need to link to `LibPthread` if no prior builds of it existed. Because of this, we'd immediately have an assertion failure in SystemServer, as mutexes are used for the safe construction of function-local static variables. |