linuxdeployqt icon indicating copy to clipboard operation
linuxdeployqt copied to clipboard

Makes Linux applications self-contained by copying in the libraries and plugins that the application uses, and optionally generates an AppImage. Can be used for Qt and other applications

Results 133 linuxdeployqt issues
Sort by recently updated
recently updated
newest added

When I try to deploy an app, I get the following error: ``` ERROR: Error reading rpath with patchelf "libnsl.so" : "cannot find section .dynamic\n" ERROR: Error reading rpath with...

I have problem while loading shared objects on runtime. One of the libraries is trying to load libproj.so and fails, because there is missing symlink from libproj.so -> libproj.so.xx This...

I am using Qt5.7.1 and QtCreator4.2.0 on Debian 9.8. I want to create a deployment file with linuxdeployqt. What I did Release build of test project and make executable file...

From the beginning, this tool has been closely modeled after the pre-existing `macdeployqt` tool to facilitate integration into upstream Qt. The question is whether we should do this. http://wiki.qt.io/Qt_Contribution_Guidelines Pros:...

help wanted
question

#!/bin/bash HERE="$(dirname "$(readlink -f "${0}")")" export LD_LIBRARY_PATH=${HERE}/usr/lib/foobar:$LD_LIBRARY_PATH sudo"${HERE}/usr/bin/foo" "$@" ------------------------------------- run appimage show results like this: sudo: xx/usr/bin/foo: command not found

We use Centos6.10 to make AppImage bundles (32 and 64 bits). Until now, we use a bash script with all rules to clean-up appdir before to package with AppImageKit. This...

The log pasted in https://github.com/probonopd/linuxdeployqt/issues/237#issuecomment-473378867 has: `Log: excludelist: ("ld-linux.so.2", "ld-linux-x86-64.so.2", "libanl.so.1", "libasound.so.2", "libBrokenLocale.so.1", "libcidn.so.1", "libcom_err.so.2", "libcrypt.so.1", "libc.so.6", "libdl.so.2", "libdrm.so.2", "libEGL.so.1", "libexpat.so.1", "libfontconfig.so.1", "libfreetype.so.6", "libfribidi.so.0", "#", "https://github.com/olive-editor/olive/issues/221", "and", "https://github.com/knapsu/plex-media-player-appimage/issues/14", "libgcc_s.so.1", "libgdk_pixbuf-2.0.so.0",...

bug

I'm currently building a Qt app under Nix for deployment as an AppImage outside of Nix. I noticed that `linuxdeployqt` quickly stumbled when following library dependencies (for instance finding some...

I'm deploying drkonqi and kcrash with one application to allow bugtrace. It appears that when [kcrash calls fork](https://github.com/KDE/kcrash/blob/master/src/kcrash.cpp#L771). fork fails and the error message is displayed. Is that a know...

Should we simplify rpath setting by delegating the job for a whole directory using a patchelf option to make the rpath relative under a specified root directory? https://github.com/NixOS/patchelf/pull/118 It would...