appimage.github.io icon indicating copy to clipboard operation
appimage.github.io copied to clipboard

Add SysDManager file with project URL

Open plrigaux opened this issue 2 months ago • 3 comments

plrigaux avatar Oct 24 '25 03:10 plrigaux

Thanks @plrigaux.

I don't quite know yet what might be causing

@libc.so.6: undefined symbol: __tunable_is_initialized, version GLIBC_PRIVATE

How did you create the AppImage?

probonopd avatar Oct 24 '25 16:10 probonopd

@probonopd

Thanks to reply me, I struggle one day to find the AppImage recipe.

I made the AppImage manually, I took the the needed libraries by identified them with ldd and copy them from my OS (Arch BTW ;-)).

My question is do I need to package glibc? Does Linux distribution should provide it?

Thank you

plrigaux avatar Oct 25 '25 00:10 plrigaux

@plrigaux you can either bundle all libraries (including glibc) or only a subset. Both require significant knowledge (e.g, bundling glibc is not easy because it consists of multiple paths that are hardcoded, and all must be deployed together - likewise, when bundling a subset you need to know which libraries to deploy and which not to deploy in your bundle).

Hence, I highly recommend to use tools like go-appimage's appimagetool, which can do the heavy lifting for you. Those tools contain knowledge collected over decades.

probonopd avatar Oct 25 '25 08:10 probonopd