550

Why do we need appimage when we can have single binary statically compiled executable?

Additionally, I can't really understand why are dynamically linked libraries so popular and how on earth anyone who ever had a ".dll / .so not found" error thinks this is a good idea.

The main idea as far as I understand was to be able to share code which I think everyone knows work only in theory, besides would it not be easier to just recompile the executable from source with updated dependency statically linked?

Other idea behind dlls were that you could replace a dll with different dll as long as the api was compatible which is very unlikely scenario for average people.

Yet another possible advantage would be that the library code is shared so it takes less space on disk which might be true for some libraries which are very common but on the other hand static compilation only includes the part of library code that is used by the program so it takes less space anyway and is more optimized.

So the reasons to use the dlls can be easily dismissed.

About the disadvantages - if the dll is not present the program will not work. It's quite simple and in my view if you create a program which does not work by itself then that's a failure on your side.

The dlls are just nightmare most of the time, static compilation for the win. (pic for attention)

all 37 comments
sorted by: hot top controversial new old
[-] arcimboldo@lemmy.sdf.org 66 points 10 months ago

When a basic dynamic library needs to be updated because, for instance, there is a big security issue, then all your statically linked binaries will have to be updated. Which means every one of those developer teams need to keep track of all the security fixes, release a new version of the binary and push it, and every user will have to download gigabytes and gigabytes of data.

While if you have dynamic libs you only have to download that one, and the fix will be pushed earlier and all the apps will benefit from it.

[-] SIGSEGV@sh.itjust.works 39 points 10 months ago

Did you,... hrm,... did you even take classes about this stuff. Ffs, this is why this career pays well: you have to understand complicated things.

Maybe your issue is with Windows. I suggest moving away from that platform.

Dynamic libraries are essential to computing, and allow us to partition out pieces of the code. One giant library would have to be recompiled with every change.

[-] AProfessional@lemmy.world 35 points 10 months ago* (last edited 10 months ago)

Shared libraries are not a theoretical good, they have been the backbone of computers for decades and many vendors have successfully maintained ABIs for decades.

Modern languages do the statically compiled solution and it has its own downsides. Makes language bindings hard, no stable ABI means no binary platforms exist (other than awkward C wrappers), rebuilds are slow and OS wide results in a lot of churn, reasoning about security fixes is very hard.

[-] 1984 10 points 10 months ago* (last edited 10 months ago)

Honestly, I love statically compiled binaries for their simplicity. I was writing a small utility in Rust today and I wanted to share it with a colleague on windows.

One command to cross compile my Linux version to windows version and it worked on first attempt on his computer. To me it's worth giving up a lot of the advantages of shared libraries for that kind of simplicity.

There is no install. There is only run.

[-] mustardman@discuss.tchncs.de 13 points 10 months ago

We should replace software repositories with the friendly person who stops by with a USB. Running "apt upgrade" pulls up an Uber-like interface that says when your software will arrive. Latency is terrible but bandwidth is phenomenal.

[-] dot20@lemmy.world 5 points 10 months ago

IIRC apt actually does support external media (because back in the day, not everyone had fast internet).

[-] JustBrian7872@feddit.de 2 points 10 months ago

Yes it does, still used when installing from media like DVD

[-] sznio@beehaw.org 10 points 10 months ago* (last edited 10 months ago)

Additionally, I can't really understand why are dynamically linked libraries so popular and how on earth anyone who ever had a ".dll / .so not found" error thinks this is a good idea.

  1. You can load a DLL once and all programs can share it, saving memory. It also makes programs start faster since the DLL might be already loaded, so there's less to load from disk. That mattered more back in the 90s
  2. You can update one file and have the patch apply to all programs
[-] jarfil@beehaw.org 4 points 10 months ago* (last edited 10 months ago)
  1. Your program can also NOT load a DLL until it's actually needed, making it definitely start much faster.
[-] nixfreak@sopuli.xyz 9 points 10 months ago

Cause statically linked libs can be very large. I agree though , rather have statically linked then dynamic.

[-] steltek@lemm.ee 9 points 10 months ago* (last edited 10 months ago)

No one seems to mention license considerations when talking about static linking. Even if your app is open source, your particular license may not be legally compatible with the GPL, for example. 3BSD, MIT, and Apache most likely don't change in a single binary but it's kind of a new thing that no one was really thinking of before when mixing licenses together.

I think this default okay assumption comes from most developers having a cloud-centric view where there's technically no "distribution" to trigger copyright.

[-] TechieDamien@lemmy.ml 0 points 10 months ago

Even in the cloud you need to consider licenses such as the AGPL. Personally I don't get this almost apathetic approach many developers have towards licensing and abiding by licenses.

[-] ArbitraryValue@sh.itjust.works 9 points 10 months ago

Another advantage: enforced compartmentalization. If you have a single binary, someone will always give in to the temptation to bypass whatever honor policy is keeping your code from becoming spaghetti.

[-] gens@programming.dev 4 points 10 months ago

Because programmers find a good way to do something then apply it to everything. It becomes the one true way, a dogma, a rule. Like how OOP was the best thing ever for everything, and just now 30 years later is proven to be actually bad. At least appimage is more like DOS-s "just unzip and run it" then "download another 500MB of useless stuff because the program depends on 1 20kB file in it".

That said, well made libraries are good. As in those that have a stable API so versions don't matter that much.

[-] leviosa@programming.dev 4 points 10 months ago

Like how OOP was the best thing ever for everything, and just now 30 years later is proven to be actually bad.

Alan Kay coined the term 57 years ago and we have to look at the landscape back then to see just how much OOP has actually influenced pretty much all languages, including ones that distance themselves from the term now. Avoiding shared global state. Check. Encapsulating data and providing interfaces instead of always direct access. Check. Sending signals to objects/services for returned info. Check check check.

[-] gens@programming.dev 1 points 10 months ago* (last edited 10 months ago)

Data oriented design is the new thing, much different from that.

OOP, other then smalltalk and maybe few other languages, is somewhat different in practice from the original idea. I can dig up a great talk from Alan Kay on OOP if you want. Actually i want to watch it again so i'l edit it in here when i find it.

Edit: https://www.youtube.com/watch?v=fhOHn9TClXY Great talk, as far as i remember.

That said, we often have to process seemingly unrelated data together which is slow with the model of passing data arround (even when by reference). When OOP was invented memory access was as fast as actual operations on it, while today memory is much slower then processing. With caches and simd and such, it is much faster if everything is an array. Peronally i'm not a fan of OOP because of the "everything has to be an object" mentality, but do whatever you like.

[-] jarfil@beehaw.org 2 points 10 months ago* (last edited 10 months ago)

DOP, OOP... just give me "C with classes" and I'll cast whatever void* to whatever's needed ๐Ÿ˜œ

[-] glockenspiel@programming.dev 4 points 10 months ago* (last edited 10 months ago)

From Ellen Ullman's Close to the Machine:

"The project begins in the programmer's mind with the beauty of a crystal. I remember the feel of a system at the early stages of programming, when the knowledge I am to represent in code seems lovely in its structuredness. For a time, the world is a calm, mathematical place. Human and machine seem attuned to a cut-diamond-like state of grace.

...

Then something happens. As the months of coding go on, the irregularities of human thinking start to emerge. You write some code, and suddenly there are dark, unspecified areas. All the pages of careful documents, and still, between the sentences, something is missing.

Human thinking can skip over a great deal, leap over small misunderstandings, can contain ifs and buts in untroubled corners of the mind. But the machine has no corners. Despite all the attempts to see the computer as a brain, the machine has no foreground or background. It cannot simultaneously do something and withhold for later something that remains unknown[1]. In the painstaking working out of the specification, line by code line, the programmer confronts all the hidden workings of human thinking.

Now begins a process of frustration.

[1] clarifies how multitasking typically works, which was usually just really fast switching at the time of the book.

[-] nyan@lemmy.cafe 2 points 10 months ago

There is one case I can think of where statically linked binaries make sense: games. They're almost always closed-source even on otherwise open-source systems, and so cannot be recompiled against newer library versions, and (for smaller indies especially) it isn't unusual for the people who do have the code to close up shop and vanish off the face of the Internet. For those, it honestly is better for them to carry all their libraries around with them, even if it results in some binary bloat.

For open-source software, dynamic linking isn't usually an issue until some piece of software goes unmaintained for so long that it catches bit-rot.

For software not in one of those two categories . . . well, maybe you ought to move off Windows?

[-] UlrikHD@programming.dev 1 points 10 months ago

For modding, it's very useful to not have everything statically linked. DLSS swapping is probably the most prominent use case nowadays.

[-] leviosa@programming.dev 2 points 10 months ago

Windows shared libs could do with having an rpath equivalent for the host app. I tried to get their manifest doohickeys working for relative locations but gave up and still just ~~splat~~ install them in the exe directory.

Aside from that shared libraries are great. Can selectively load/reload functions from them at runtime which is a fundamental building block of a lot of applications that have things like plugin systems or wrappers for different hardware etc. Good for easier LGPL compliance as well.

[-] jarfil@beehaw.org 3 points 10 months ago

Modern Windows does a lot of shenanigans with DLLs to avoid the "DLL hell" effect, like keeping multiple versions, hardlinking, and transparently redirecting the DLLs accessible to a program, even when they "seem" to be in the exe's dir.

this post was submitted on 23 Aug 2023
550 points (96.0% liked)

Programmer Humor

18253 readers
897 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS