There was a time where this debate was bigger. It seems the world has shifted towards architectures and tooling that does not allow dynamic linking or makes it harder. This compromise makes it easier for the maintainers of the tools / languages, but does take away choice from the user / developer. But maybe that’s not important? What are your thoughts?

  • ono
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    1
    ·
    edit-2
    10 months ago

    Shared libraries save RAM.

    Dynamic linking allows working around problematic libraries, or even adding functionality, if the app developer can’t or won’t.

    Static linking makes sense sometimes, but not all the time.

    • robinm@programming.dev
      link
      fedilink
      arrow-up
      4
      ·
      10 months ago

      Shared libraries save RAM.

      Citation needed :) I was surprised but I read (sorry I can’t find the source again) that in most cases dynamic linking are loaded 1 time, and usually very few times. This make RAM gain much less obvious. In addition static linking allows inlining which itself allow aggressive constant propagation and dead code elimination, in addition to LTO. All of this decrease the binary size sometimes in non negligeable ways.

      • ono
        link
        fedilink
        English
        arrow-up
        2
        ·
        10 months ago

        I was surprised but I read (sorry I can’t find the source again) that in most cases dynamic linking are loaded 1 time, and usually very few times.

        That is easily disproved on my system by cat /proc/*/maps .

          • ono
            link
            fedilink
            English
            arrow-up
            4
            ·
            edit-2
            10 months ago

            Ah, yes, I think I read Drew’s post a few years ago. The message I take away from it is not that dynamic linking is without benefits, but merely that static linking isn’t the end of the world (on systems like his).

      • ck_@discuss.tchncs.de
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        10 months ago

        In practical terms often yes. It can be easier in practical terms to just LD_PRELOAD something than to maintain your own patched version of an RPM / APT package for example.