You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a working application, I have tested that the Appimage works on Linux. But after installing the snap version of the app, I am not able to run it because of this error:
Error: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found.
My local host has GLIBC 2.35,
But on snap run --shell airobox-desktop-app, I get GLIBC version 2.27. I have tried to use core 20 and core 22, and also tried different confinement option but nothing seems to work.
Here is the code block for my builderoption in vue.config.json
linux: {
target: ["snap"],
category: 'Development',
snap: {
base: "core22",
confinement: "classic",
stagePackages: ["libc6", "libc6-dev", "libstdc++6", "zlib1g", "libgcc1"]
},
Any feedback or suggestions are appreciated. Thanks in advance
The text was updated successfully, but these errors were encountered:
I have a working application, I have tested that the Appimage works on Linux. But after installing the snap version of the app, I am not able to run it because of this error:
Error: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found.
My local host has GLIBC 2.35,
But on snap run --shell airobox-desktop-app, I get GLIBC version 2.27. I have tried to use core 20 and core 22, and also tried different confinement option but nothing seems to work.
Here is the code block for my builderoption in vue.config.json
linux: {
target: ["snap"],
category: 'Development',
snap: {
base: "core22",
confinement: "classic",
stagePackages: ["libc6", "libc6-dev", "libstdc++6", "zlib1g", "libgcc1"]
},
Any feedback or suggestions are appreciated. Thanks in advance
The text was updated successfully, but these errors were encountered: