this post was submitted on 25 Sep 2023
1149 points (92.3% liked)

linuxmemes

20762 readers
1571 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 

Re-creation of someone else's post because the original was removed and I found it funny when I first saw it

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 11 months ago (3 children)

can you not recompile the app to use the new lib?

[–] [email protected] 10 points 11 months ago

Someone probably could. But not me. I am not a software developer, and being one should not be a prerequisite to using an OS, despite what the memes in this very group might lead one to believe.

[–] [email protected] 8 points 11 months ago

that's when you find out that the updated build environment is incompatible with the older libraries the project expected.

usually the only escape is docker, or containerization to be correct, just give the old app and old environment.

this wastes a lot of space though

[–] [email protected] 6 points 11 months ago* (last edited 11 months ago)

Potentially but it's not always that simple. I've literally encountered this exact scenario. OldeShit needs libY 1.9 but pacman is on 2.2. Can't downgrade because libY uses 10 different libs collectively in the depends tree that explicitly need 2.0 or higher. So you take a look at libY and OldeShit builds only to realise several functions that libY provide have been reworked or removed, making it incompatible with OldeShit. As such OldeShit doesn't build.

As an aside, this is quite literally why Microsoft has several different VC Redistributables. To avoid this issue. But this also creates another issue. Lol.