Build appimage from rootfs archive distro. #1361
-
So I'm trying to convert rootfs archive (alpine linux rootfs) into appimage. I followed this guide and succeeded. Appimage was created. When I ran the appimage :
There are some missing libraries which already exist on rootfs archive. How to tell the appimage to use libraries from rootfs ? Note : I want to create minimalistic neovim appimage using alpine rootfs archive and appimagetool. These are steps I did :
I got error about missing libraries for neovim executable. Any clue to fix it ? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Found related discussion here. Tried to patchelf the nvim executable but missing libraries error still appear. |
Beta Was this translation helpful? Give feedback.
-
I've experimented with doing a similar thing here: |
Beta Was this translation helpful? Give feedback.
-
Finally, I made it ! |
Beta Was this translation helpful? Give feedback.
-
Since it's solved, I will close it for now. |
Beta Was this translation helpful? Give feedback.
Finally, I made it !
Instead of AppRun script, I use AppRun executable. I stiil need to link
/lib/ld-musl-x86_64.so.1
to/lib64/ld-linux-x86-64.so.2
. Now my generated appimage works. Thanks.