#LibC
Someone said something about ingesting libc and this is what popped into my head
March 6, 2026 at 1:34 AM
best feature of go: no libc
August 5, 2025 at 10:35 AM
"rust is memory safe" mfers when i show them my disgustingly unsafe code that hooks several libc functions and transmutes like its nobody's business
March 5, 2025 at 12:31 AM
finally wrangled LLVM/Clang/wasi-libc/libc++ together
October 25, 2025 at 6:00 PM
i *urgently* need a blog post on how Microsoft managed not only to break libc `pow()`, but actually ship a build with a broken libc `pow()` to the Windows Insider canary channel
July 2, 2025 at 8:00 PM
justine tunney the libc mutex micro optimizations person??
December 19, 2024 at 5:21 AM
Microsoft solving the unsafe interop debacle by introducing a "safe" keyword is the funniest shit I've ever seen dude devblogs.microsoft.com/dotnet/impro...
May 23, 2026 at 2:57 PM
Really excited about what the team has accomplished here! Also, the post shares some really fun details of hardened libc++, huge credit to the #Clang, #LLVM, and libc++ community!
Excited to share our latest blog post on memory safety! We’re tackling spatial safety in our massing C++ codebase by hardening live++ by default. It adds bounds checks to things like std::vector, preventing a fair bit of out-of-bounds vulnerabilities: security.googleblog.com/2024/11/retr...
Retrofitting Spatial Safety to hundreds of millions of lines of C++
Posted by Alex Rebert and Max Shavrick, Security Foundations, and Kinuko Yasada, Core Developer Attackers regularly exploit spatial mem...
security.googleblog.com
November 15, 2024 at 7:26 PM
Rewrite it in Cosmopolitan Libc! github.com/jart/cosmopo...
November 12, 2024 at 10:17 PM
alpine aarch64 kernel, musl libc, BSD + Toybox coreutils, dinit, libressl, ZFS, wayland... my halo-halo of a linux distro is taking a weird shape and its not a wildebeest
March 24, 2025 at 1:13 PM
OH: "every copy of libc++ ships with a small rodent for emotional support, provided you can successfully locate it"
December 10, 2024 at 11:15 PM
You can save a lot of disk space by removing *checks notes* libc.
December 29, 2024 at 5:26 PM
figured it out

`pnpm config set supportedArchitectures --json '{"os":["current"],"cpu":["current"],"libc":["current"]}'`
January 23, 2026 at 4:54 AM
Am I a good libc
June 12, 2024 at 1:45 AM
I finally finished my Wasm-hosted, Wasm-targeting port of LLVM/Clang/wasi-libc/libc++!

it will be published on NPM in the coming hours
October 25, 2025 at 5:58 PM
Linux is pretty unique though in having a stable syscall interface. On other platforms Fil-C would have to provide a shim (possibly a second libc) which translates app-level libc calls to system libc calls
July 20, 2026 at 10:47 PM
is @postmarketos.org the only distro that does Musl Libc + Systemd?

Does upstream systemd even support Musl Libc?
March 5, 2025 at 10:52 AM
Current level of esoteric hacking: submitting pull requests to Rust's libc crate.
March 11, 2025 at 8:43 AM
TIL libc provides a weird useless function called "index". I discovered it by renaming a local variable "index" (reasonable name for a variable) and having my code successfully compile but with a warnings saying "dude, you are comparing int to a function". And I was like wtf.
February 22, 2026 at 4:59 PM
char32_t* cannot be compared and used against libc++'s __wrap_iter<char32_t*>.

God this shit is so annoying.
April 24, 2025 at 3:54 PM
I think its crazy that every application that uses GNU's libc library memory leaks. Its been an issue for 20 years.
July 16, 2025 at 1:29 AM
do you. uh... not have a libc? what platform are you on?
June 10, 2024 at 5:22 PM
i've modified wasi-libc and wasi-sdk (PRs pending) so that you always have the concurrency APIs (pthread_*, thrd_*, <thread>, <mutex>, <atomic>) available to you, even in single-threaded targets. this makes porting applications (especially C++ ones) much, _much_ easier!
Refactor stub pthread library and enable unconditionally by whitequark · Pull Request #602 · WebAssembly/wasi-libc
This PR changes the layout of the stub pthread library to match that of libc-top-half: splits it into (mostly) one file per function, and ensures the same API is exposed from both libraries, adding...
github.com
July 26, 2025 at 5:45 PM
(this actually works though and i did it to avoid writing libc::ioctl today)
December 6, 2024 at 11:23 PM