Skip to content Skip to footer
0 items - $0.00 0

The atrocious state of binary compatibility on Linux and how to address it by generichuman

The atrocious state of binary compatibility on Linux and how to address it by generichuman

11 Comments

  • Post Author
    sylware
    Posted April 1, 2025 at 10:38 pm

    This article missed a critical point which is "the right way" to select a glibc ABI version: see binutils ld documentation, second part of the page related to VERSION support.
    This must include glibc internal symbols.

    This will allow to craft ELF binaries on a modern distro which will run on "older" distros. This is critical for games and game engines. There is an significant upfront only-once work in order to select an "old" glibc ABI.

    The quick and dirty alternative being having a toolchain configured to link with an "old" glibc on the side.

    This article missed the -static-libstdc++ critical option for c++ applications (the c++ ABI is hell on earth), but did not miss the -static-libgcc and the dynamic loading of system interface shared libs.

  • Post Author
    superkuh
    Posted April 1, 2025 at 11:19 pm

    As an end user I often patch the glibc version incompatibility away with https://github.com/corsix/polyfill-glibc

        $ ./polyfill-glibc --target-glibc=2.17 /path/to/my-program
    

    This often leads to discovering new version incompatibilities in other libs. But as the article says others usually can be statically compiled.

  • Post Author
    Jeaye
    Posted April 2, 2025 at 12:21 am

    I don't understand why they don't just statically link their binaries. First, they said this:

    > Even if you managed to statically link GLIBC—or used an alternative like musl—your application would be unable to load any dynamic libraries at runtime.

    But then they immediately said they actually statically link all of their deps aside from libc.

    > Instead, we take a different approach: statically linking everything we can.

    If they're statically linking everything other than libc, then using musl or statically linking glibc will finish the job. Unless they have some need for loading share libs at runtime which they didn't already have linked into their binary (i.e. manual dlopen), this solves the portability problem on Linux.

    What am I missing (assuming I know of the security implications of statically linked binaries — which they didn't mention as a concern)?

  • Post Author
    bee_rider
    Posted April 2, 2025 at 12:24 am

    Really the title should be something like “the difficulty of releasing binaries on Linux and how to work around it.” It isn’t really an atrocious state, the goal of a distro should be to get useful software into the repos. Software not distributed in an open source format doesn’t really help there.

  • Post Author
    James_K
    Posted April 2, 2025 at 12:50 am

    Here's a thought: just distribute source code. ABI issues should be mostly fixed. Most computers can compile source code fast enough for the user not to notice and cache the results so that it's never a problem again. If you want optimised code, you can do a source to source optimisation then zip and minify the file. You could compile such a library to approximately native speeds without much user-end lag using modern JIT methods, and maybe even run LTO in a background thread so that the exectuables outdo dynamically linked ones.

  • Post Author
    lukeh
    Posted April 2, 2025 at 12:51 am

    Windows having multiple C libraries has its own pain points, in particular it's difficult to ship binary libraries that return allocated memory to their consumer (you either need to have the library consumer allocate the memory, which probably explains why so many Win32 APIs have this behaviour, or allow alloc/free functions to be registered). Not to mention different C libraries having their own file handle, TLS, etc state. Unsurprisingly Microsoft now ships the Universal CRT (UCRT) as part of Windows.

  • Post Author
    BwackNinja
    Posted April 2, 2025 at 1:02 am

    There is no distinction between system and program libraries in Linux. We used to pretend there was one before usrmigration, but that was never good to take seriously.

    The distro as packager model ensures that everything is mixed together in the filesystem and is actively hostile to external packaging. Vendoring dependencies or static linking improves compatibility by choosing known working versions, but decreases incentive and ability for downstream (or users) to upgrade those dependencies.

    The libc stuff in this article is mostly glibc-specific, and you'd have fewer issues targeting musl. Mixing static linking and dlopen doesn't make much sense, as said here[1] which is an interesting thread. Even dns resolution on glibc implies dynamic linking due to nsswitch.

    Solutions like Snap, Flatpak, and AppImage work to contain the problem by reusing the same abstractions internally rather than introducing anything that directly addresses the issue. We won't have a clean solution until we collectively abandon the FHS for a decentralized filesystem layout where adding an application (not just a program binary) is as easy as extracting a package into a folder and integrates with the rest of the system. I've worked on this off and on for a while, but being so opinionated makes everything an uphill battle while accepting the current reality is easy.

    [1] https://musl.openwall.narkive.com/lW4KCyXd/static-linking-an…

  • Post Author
    jll29
    Posted April 2, 2025 at 1:14 am

      > More importantly, separating the dynamic linker from the C library itself would allow multiple versions of libc to coexist, eliminating a major source of compatibility issues. This is exactly how Windows handles it, which is one of the reasons Windows maintains such strong binary compatibility. You can still run decades-old Windows software today because Microsoft doesn’t force everything to be tied to a single, ever-changing libc.
    

    One of the questions of multiple versions on the same box is what about security issues of those older versions…

  • Post Author
    knowaveragejoe
    Posted April 2, 2025 at 1:21 am

    No discussion of Cosmopolitan or APE?

  • Post Author
    mrbluecoat
    Posted April 2, 2025 at 2:26 am

    > shipping software on Linux

    That's a surprisingly hard nut to crack when containers won't work for your use case. We found https://github.com/silitics/rugix to work well in that situation.

  • Post Author
    brie22
    Posted April 2, 2025 at 3:17 am

    Absolutely ridiculous that scrollbars are disabled for this page. The kids are too cool for such pedestrian web parts! Grow up and stop forcing your shitty UX on people.

    Edit: Found it – it's black on black – even worse!

Leave a comment

In the Shadows of Innovation”

© 2025 HackTech.info. All Rights Reserved.

Sign Up to Our Newsletter

Be the first to know the latest updates

Whoops, you're not connected to Mailchimp. You need to enter a valid Mailchimp API key.