Conversation

🤔 an I wonder: would the LLVM libc be written in C++? Also, what would you call it? llibc? Logical next step is to have an LLVM kernel. What would you call that kernel? It would certainly be low-level, and would handle virtual machines (as well as virtual memory).
Quote Tweet
Is it time for an LLVM libc? The Google LLVM team are collecting feedback lists.llvm.org/pipermail/llvm
11
31
Replying to
There could be so many more interesting LLVM projects to solve problems with existing platforms! - LLDE - the LLVM Desktop Environment - ALLSA - the Advanced LLVM Sound Architecture
2
20
The functionality to map libraries from an apk is part of the Bionic linker so Chromium's crazy linker hasn't been relevant for a long time. They use the standard linker on any remotely modern platform. It was a bit nuts to have a custom linker in Chromium so that name was good.
2
1
It's a fairly boring OS feature implemented within the standard linker now. It's used by setting android:extractNativeLibs="false" in the manifest which is being recommended as a way for app developers to save storage space: developer.android.com/topic/performa. It has other benefits though.