tauri icon indicating copy to clipboard operation
tauri copied to clipboard

[bug] [linuxdeploy] Linux AppImage script fails [podman] ['std::logic_error']

Open leet4tari opened this issue 3 months ago β€’ 14 comments

Describe the bug

Looking to offer a local build option for our tauri app for our Linux users, we ran into a number of user related issues like package versions mis-matching issues, none of these problems with the tauri-app, just a reason why I was looking at doing a docker build.

Tried to make this build process easier by documenting and testing how to use docker as a clean starting point, I ran into problems, because I had switched to using podman for my container loads.

Doing an AppImage build I got to the following failed bundle position, which I was not able to find any info on or for

    Bundling [tauri_bundler::bundle::linux::appimage] Tari Universe (Alpha)_1.6.1_amd64.AppImage (/work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha)_1.6.1_amd64.AppImage)
     Running [tauri_bundler::utils] Command `/root/.cache/tauri/linuxdeploy-x86_64.AppImage  --appimage-extract-and-run --verbosity 1 --appdir /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir --plugin gtk --plugin gstreamer --output appimage`
linuxdeploy version 1-alpha (git commit ID 659c9db), GitHub actions build 10 built on 2024-07-26 15:40:22 UTC
terminate called after throwing an instance of 'std::logic_error'
  what():  subprocess failed (exit code 127)
       Error [tauri_cli] failed to bundle project:
    - `failed to run /root/.cache/tauri/linuxdeploy-x86_64.AppImage`

As the basic build and the rpm/deb bundles were completing without any noticeable issues, I did not think I had anything wrong with our process. Plus I was able to build using GitHub action tauri-apps/tauri-action in our workflow.

Seems that FUSE storage options with podman need a little more effort, as podman is a little stricter. Some info can be found reading the ReadHat Blog - https://www.redhat.com/en/blog/podman-inside-container, thou you would not find the above error 'std::logic_error'

Running a container to build tauri-app in

podman run -it --rm  \
  --cap-add=sys_admin --cap-add mknod --device=/dev/fuse \
  -v ${PWD}/../temp/root:/root \
  -v ${PWD}/../universe:/work \
  -w /work \
  -u root \
  --platform linux/amd64 \
  ubuntu:22.04 bash

with --cap-add=sys_admin --cap-add mknod --device=/dev/fuse been the part needed to fix the above error.

This does not include all the package install and setups. This was for x86_64 host and guest container.

Reproduction

No response

Expected behavior

No response

Full tauri info output

root@f7e7c7bfc16c:/work# npm run tauri info

> [email protected] tauri
> node ./scripts/tauri-wrapper.js info

Loading environment file: ./src-tauri/env.esme
[[email protected]] injecting env (8) from src-tauri/env.esme -- tip: πŸ“‘ auto-backup env with Radar: https://dotenvx.com/radar

[βœ”] Environment
    - OS: Ubuntu 22.4.0 x86_64 (X64) (Unknown DE on Unknown Session)
    βœ” webkit2gtk-4.1: 2.48.5
    βœ” rsvg2: 2.52.5
    βœ” rustc: 1.90.0 (1159e78c4 2025-09-14)
    βœ” cargo: 1.90.0 (840b83a10 2025-07-30)
    βœ” rustup: 1.28.2 (e4f3ad6f8 2025-04-28)
    βœ” Rust toolchain: stable-x86_64-unknown-linux-gnu (default)
    - node: 22.19.0
    - npm: 10.9.3

[-] Packages
    - tauri πŸ¦€: 2.8.5
    - tauri-build πŸ¦€: 2.4.1
    - wry πŸ¦€: 0.53.3
    - tao πŸ¦€: 0.34.3
    - tauri-cli πŸ¦€: 2.8.4
    - @tauri-apps/api : 2.8.0
    - @tauri-apps/cli : 2.8.4

[-] Plugins
    - tauri-plugin-process πŸ¦€: 2.3.0
    - @tauri-apps/plugin-process : not installed!
    - tauri-plugin-fs πŸ¦€: 2.4.2
    - @tauri-apps/plugin-fs : not installed!
    - tauri-plugin-shell πŸ¦€: 2.3.1
    - @tauri-apps/plugin-shell : 2.3.1
    - tauri-plugin-single-instance πŸ¦€: 2.3.4
    - @tauri-apps/plugin-single-instance : not installed!
    - tauri-plugin-updater πŸ¦€: 2.9.0
    - @tauri-apps/plugin-updater : not installed!
    - tauri-plugin-http πŸ¦€: 2.5.2
    - @tauri-apps/plugin-http : not installed!
    - tauri-plugin-clipboard-manager πŸ¦€: 2.3.0
    - @tauri-apps/plugin-clipboard-manager : 2.3.0
    - tauri-plugin-os πŸ¦€: 2.3.1
    - @tauri-apps/plugin-os : 2.3.1
    - tauri-plugin-cli πŸ¦€: 2.4.0
    - @tauri-apps/plugin-cli : not installed!

[-] App
    - build-type: bundle
    - CSP: style-src 'self' 'unsafe-inline'; object-src 'self' data: blob:; img-src 'self' data: blob: base64: https://*.twimg.com https://cdn.npmjs.com/@tari-project/tari-tower http://127.0.0.1 http://127.0.0.1/ http://127.0.0.1:* http://localhost http://localhost/ http://localhost:* https://static.tari.com https://static.tari.com/* https://lh3.googleusercontent.com; worker-src 'self' blob: https://cdn.npmjs.com/@tari-project/tari-tower; default-src 'self' tauri: https: http://localhost:* http://127.0.0.1:*; script-src-elem 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' https: wss://ut.tari.com wss://relay.walletconnect.org https://rpc.ankr.com/eth https://ethereum-sepolia-rpc.publicnode.com tauri: tauri://localhost:* http://localhost:* http://127.0.0.1:* ipc: http://ipc.localhost data: blob: application/octet-stream base64; script-src 'self' 'unsafe-eval'; media-src 'self' data: blob: tauri: https:
    - frontendDist: ../dist
    - devUrl: http://localhost:1420/
    - framework: React
    - bundler: Vite

Stack trace


Additional context

No response

leet4tari avatar Sep 23 '25 11:09 leet4tari

This was also discussed a bit on discord (though no mention of podman) here https://discord.com/channels/616186924390023171/1383929416798965932 (don't bother joining just for that, there wasn't much info - just crosslinking it here).

Since this error is not saying anything, a general workaround at the moment is to run cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch temp/linuxdeploy --force --locked until i revert the change that seemingly causes this error (most of the times, not sure about yours tbh) https://github.com/tauri-apps/tauri/pull/13913

FabianLars avatar Sep 23 '25 13:09 FabianLars

Thanks @FabianLars ... I did not see the libfuse commit. I was more opening the issue for direction on where I could possible put a PR in for a note or trouble shooting guide or at least have it found in the issues.

I will test on Monday, just for my own sanity and to really be thorough. I wonder if testing for fuse support might be an option? I don't even know how one might do that, but a suggestion.

Thanks for all the awesome tooling!

leet4tari avatar Sep 23 '25 14:09 leet4tari

I was more opening the issue for direction on where I could possible put a PR in for a note or trouble shooting guide or at least have it found in the issues.

I'm unsure how to proceed with this whole issue either tbh. btw, thanks for figuring out what caused your issure πŸ‘

I wonder if testing for fuse support might be an option? I don't even know how one might do that, but a suggestion.

No idea either but falling back to the old behavior doesn't sound reasonable so we may as well document the requirements (if we stick with what we currently have, which i kinda doubt) upfront and call it a day.

FabianLars avatar Sep 23 '25 14:09 FabianLars

Doing the same AppImage bundle for linux-arm64 on a MacBook with an M1, but have a different error

ERROR: Failed to copy file /usr/share/doc/libxrender1/copyright to /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libxrender1/copyright: filesystem error: cannot copy file: Permission denied [/usr/share/doc/libxrender1/copyright] [/work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libxrender1/copyright]
Copying file /usr/share/doc/libxslt1.1/copyright to /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libxslt1.1/copyright
ERROR: Failed to copy file /usr/share/doc/libxslt1.1/copyright to /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libxslt1.1/copyright: filesystem error: cannot copy file: Permission denied [/usr/share/doc/libxslt1.1/copyright] [/work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libxslt1.1/copyright]
Copying file /usr/share/doc/libzstd1/copyright to /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libzstd1/copyright
ERROR: Failed to copy file /usr/share/doc/libzstd1/copyright to /work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libzstd1/copyright: filesystem error: cannot copy file: Permission denied [/usr/share/doc/libzstd1/copyright] [/work/src-tauri/target/release/bundle/appimage/Tari Universe (Alpha).AppDir/usr/share/doc/libzstd1/copyright]
failed to bundle project: `failed to run /root/.cache/tauri/linuxdeploy-aarch64.AppImage`
       Error [tauri_cli_node] failed to bundle project: `failed to run /root/.cache/tauri/linuxdeploy-aarch64

I don't know if it's related, but will be part of my testing on Monday. Again, this works in GitHub action, which is not podman, but the basic process does work.

leet4tari avatar Sep 23 '25 14:09 leet4tari

I'm unsure how to proceed with this whole issue either tbh. btw, thanks for figuring out what caused your issure πŸ‘

You welcome.

I wonder if testing for fuse support might be an option? I don't even know how one might do that, but a suggestion.

No idea either but falling back to the old behavior doesn't sound reasonable so we may as well document the requirements (if we stick with what we currently have, which i kinda doubt) upfront and call it a day.

Spit-balling, but having both ways and selection via an env or switch could work. But been able to detect if fuse does not work, use the old way that does not libfuse would be cool, but as I said, not sure if that is detectable. Selectable override might just be the way for the crazy podman people.

leet4tari avatar Sep 23 '25 14:09 leet4tari

Any updates to share about this topic? I am also facing the same issue hahaha

brenoprata10 avatar Oct 04 '25 09:10 brenoprata10

Try this please

cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch fix/linuxdeploy-extractrun
cargo tauri build

Edit: branch was merged just now, new command would be

cargo install tauri-cli --git https://github.com/tauri-apps/tauri
cargo tauri build

but i think the next release will be relatively soon.

FabianLars avatar Oct 04 '25 09:10 FabianLars

@FabianLars run cargo install tauri-cli --git https://github.com/tauri-apps/tauri cargo tauri build, but Error failed to bundle project failed to run linuxdeploy

jingpengju391 avatar Nov 26 '25 07:11 jingpengju391

@jingpengju391 please share the logs you get with cargo tauri build --verbose

FabianLars avatar Nov 26 '25 07:11 FabianLars

@FabianLars thanks

Copying file /usr/lib/libenchant-2.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libenchant-2.so.2
Copying file /usr/lib/libepoxy.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libepoxy.so.0
Copying file /usr/lib/libevdev.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libevdev.so.2
Copying file /usr/lib/libffi.so.8 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libffi.so.8
Copying file /usr/lib/libgcrypt.so.20 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgcrypt.so.20
Copying file /usr/lib/libgdk-3.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk-3.so.0
Copying file /usr/lib/libgdk_pixbuf-2.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk_pixbuf-2.0.so.0
Copying file /usr/lib/libgio-2.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgio-2.0.so.0
Copying file /usr/lib/libglib-2.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libglib-2.0.so.0
Copying file /usr/lib/libgmodule-2.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgmodule-2.0.so.0
Copying file /usr/lib/libgobject-2.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgobject-2.0.so.0
Copying file /usr/lib/libgraphite2.so.3 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgraphite2.so.3
Copying file /usr/lib/libgssapi_krb5.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgssapi_krb5.so.2
Copying file /usr/lib/libgstallocators-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstallocators-1.0.so.0
Copying file /usr/lib/libgstapp-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstapp-1.0.so.0
Copying file /usr/lib/libgstaudio-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstaudio-1.0.so.0
Copying file /usr/lib/libgstbase-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstbase-1.0.so.0
Copying file /usr/lib/libgstfft-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstfft-1.0.so.0
Copying file /usr/lib/libgstgl-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstgl-1.0.so.0
Copying file /usr/lib/libgstpbutils-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstpbutils-1.0.so.0
Copying file /usr/lib/libgstreamer-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstreamer-1.0.so.0
Copying file /usr/lib/libgsttag-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttag-1.0.so.0
Copying file /usr/lib/libgsttranscoder-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttranscoder-1.0.so.0
Copying file /usr/lib/libgstvideo-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstvideo-1.0.so.0
Copying file /usr/lib/libgtk-3.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgtk-3.so.0
Copying file /usr/lib/libgudev-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgudev-1.0.so.0
Copying file /usr/lib/libharfbuzz-icu.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libharfbuzz-icu.so.0
Copying file /usr/lib/libhidapi-hidraw.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhidapi-hidraw.so.0
Copying file /usr/lib/libhwy.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhwy.so.1
Copying file /usr/lib/libhyphen.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhyphen.so.0
Copying file /usr/lib/libicudata.so.76 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicudata.so.76
Copying file /usr/lib/libicui18n.so.76 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicui18n.so.76
Copying file /usr/lib/libicuuc.so.76 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicuuc.so.76
Copying file /usr/lib/libidn2.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libidn2.so.0
Copying file /usr/lib/libjavascriptcoregtk-4.1.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjavascriptcoregtk-4.1.so.0
Copying file /usr/lib/libjbig.so.2.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjbig.so.2.1
Copying file /usr/lib/libjpeg.so.8 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjpeg.so.8
Copying file /usr/lib/libjson-glib-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjson-glib-1.0.so.0
Copying file /usr/lib/libjxl.so.0.11 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl.so.0.11
Copying file /usr/lib/libjxl_cms.so.0.11 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl_cms.so.0.11
Copying file /usr/lib/libk5crypto.so.3 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libk5crypto.so.3
Copying file /usr/lib/libkeyutils.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkeyutils.so.1
Copying file /usr/lib/libkrb5.so.3 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5.so.3
Copying file /usr/lib/libkrb5support.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5support.so.0
Copying file /usr/lib/liblcms2.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblcms2.so.2
Copying file /usr/lib/liblzma.so.5 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblzma.so.5
Copying file /usr/lib/libmanette-0.2.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmanette-0.2.so.0
Copying file /usr/lib/libmount.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmount.so.1
Copying file /usr/lib/libnghttp2.so.14 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libnghttp2.so.14
Copying file /usr/lib/liborc-0.4.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liborc-0.4.so.0
Copying file /usr/lib/libpango-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpango-1.0.so.0
Copying file /usr/lib/libpangocairo-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangocairo-1.0.so.0
Copying file /usr/lib/libpangoft2-1.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangoft2-1.0.so.0
Copying file /usr/lib/libpcre2-8.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpcre2-8.so.0
Copying file /usr/lib/libpixman-1.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpixman-1.so.0
Copying file /usr/lib/libpng16.so.16 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpng16.so.16
Copying file /usr/lib/libpsl.so.5 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpsl.so.5
Copying file /usr/lib/librav1e.so.0.7 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/librav1e.so.0.7
Copying file /usr/lib/libseccomp.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libseccomp.so.2
Copying file /usr/lib/libsecret-1.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsecret-1.so.0
Copying file /usr/lib/libsharpyuv.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsharpyuv.so.0
Copying file /usr/lib/libsoup-3.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsoup-3.0.so.0
Copying file /usr/lib/libsqlite3.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsqlite3.so.0
Copying file /usr/lib/libsystemd.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsystemd.so.0
Copying file /usr/lib/libtasn1.so.6 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtasn1.so.6
Copying file /usr/lib/libthai.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libthai.so.0
Copying file /usr/lib/libtiff.so.6 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtiff.so.6
Copying file /usr/lib/libtinysparql-3.0.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtinysparql-3.0.so.0
Copying file /usr/lib/libtss2-esys.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-esys.so.0
Copying file /usr/lib/libtss2-mu.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-mu.so.0
Copying file /usr/lib/libtss2-rc.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-rc.so.0
Copying file /usr/lib/libtss2-sys.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-sys.so.1
Copying file /usr/lib/libtss2-tctildr.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-tctildr.so.0
Copying file /usr/lib/libudev.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libudev.so.1
Copying file /usr/lib/libunistring.so.5 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunistring.so.5
Copying file /usr/lib/libunwind.so.8 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunwind.so.8
Copying file /usr/lib/libwayland-client.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-client.so.0
Copying file /usr/lib/libwayland-cursor.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-cursor.so.0
Copying file /usr/lib/libwayland-egl.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-egl.so.1
Copying file /usr/lib/libwayland-server.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-server.so.0
Copying file /usr/lib/libwebkit2gtk-4.1.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebkit2gtk-4.1.so.0
Copying file /usr/lib/libwebp.so.7 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebp.so.7
Copying file /usr/lib/libwebpdemux.so.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpdemux.so.2
Copying file /usr/lib/libwebpmux.so.3 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpmux.so.3
Copying file /usr/lib/libwoff2common.so.1.0.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2common.so.1.0.2
Copying file /usr/lib/libwoff2dec.so.1.0.2 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2dec.so.1.0.2
Copying file /usr/lib/libxcb-render.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-render.so.0
Copying file /usr/lib/libxcb-shm.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-shm.so.0
Copying file /usr/lib/libxkbcommon.so.0 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxkbcommon.so.0
Copying file /usr/lib/libxml2.so.16 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxml2.so.16
Copying file /usr/lib/libxslt.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxslt.so.1
Copying file /usr/lib/libyuv.so to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libyuv.so
Copying file /usr/lib/libzstd.so.1 to /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libzstd.so.1
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libSvtAv1Enc.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libSvtAv1Enc.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libSvtAv1Enc.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXau.so.6
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXau.so.6: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXau.so.6'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcomposite.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcomposite.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcomposite.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcursor.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcursor.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXcursor.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdamage.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdamage.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdamage.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdmcp.so.6
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdmcp.so.6: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXdmcp.so.6'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXext.so.6
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXfixes.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXfixes.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXfixes.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXi.so.6
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXi.so.6: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXi.so.6'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXinerama.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXinerama.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXinerama.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXrandr.so.2
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXrender.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXrender.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libXrender.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libaom.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libaom.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libaom.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-bridge-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-bridge-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatk-bridge-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatomic.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatomic.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatomic.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatspi.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatspi.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libatspi.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libavif.so.16
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libavif.so.16: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libavif.so.16'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libblkid.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libblkid.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libblkid.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlicommon.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlicommon.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlicommon.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlidec.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlidec.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlidec.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlienc.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlienc.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbrotlienc.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbz2.so.1.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbz2.so.1.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libbz2.so.1.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo-gobject.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo-gobject.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo-gobject.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcairo.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcap.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcap.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcap.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcloudproviders.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcloudproviders.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcloudproviders.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcrypto.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcrypto.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libcrypto.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdatrie.so.1
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdav1d.so.7
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdav1d.so.7: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdav1d.so.7'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdbus-1.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdbus-1.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdbus-1.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdeflate.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdeflate.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdeflate.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdw.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdw.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libdw.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libelf.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libelf.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libelf.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libenchant-2.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libenchant-2.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libenchant-2.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libepoxy.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libepoxy.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libepoxy.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libevdev.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libevdev.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libevdev.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libffi.so.8
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libffi.so.8: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libffi.so.8'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgcrypt.so.20
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgcrypt.so.20: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgcrypt.so.20'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk-3.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk-3.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk-3.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk_pixbuf-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk_pixbuf-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgdk_pixbuf-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgio-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgio-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgio-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libglib-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libglib-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libglib-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgmodule-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgmodule-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgmodule-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgobject-2.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgobject-2.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgobject-2.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgraphite2.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgraphite2.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgraphite2.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgssapi_krb5.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgssapi_krb5.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgssapi_krb5.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstallocators-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstallocators-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstallocators-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstapp-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstapp-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstapp-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstaudio-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstaudio-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstaudio-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstbase-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstbase-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstbase-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstfft-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstfft-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstfft-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstgl-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstgl-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstgl-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstpbutils-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstpbutils-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstpbutils-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstreamer-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstreamer-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstreamer-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttag-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttag-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttag-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttranscoder-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttranscoder-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgsttranscoder-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstvideo-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstvideo-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgstvideo-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgtk-3.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgtk-3.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgtk-3.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgudev-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgudev-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libgudev-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libharfbuzz-icu.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libharfbuzz-icu.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libharfbuzz-icu.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhidapi-hidraw.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhidapi-hidraw.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhidapi-hidraw.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhwy.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhwy.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhwy.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhyphen.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhyphen.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libhyphen.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicudata.so.76
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicui18n.so.76
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicui18n.so.76: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicui18n.so.76'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicuuc.so.76
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicuuc.so.76: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libicuuc.so.76'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libidn2.so.0
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjavascriptcoregtk-4.1.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjavascriptcoregtk-4.1.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjavascriptcoregtk-4.1.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjbig.so.2.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjbig.so.2.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjbig.so.2.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjpeg.so.8
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjpeg.so.8: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjpeg.so.8'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjson-glib-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjson-glib-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjson-glib-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl.so.0.11
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl.so.0.11: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl.so.0.11'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl_cms.so.0.11
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl_cms.so.0.11: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libjxl_cms.so.0.11'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libk5crypto.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libk5crypto.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libk5crypto.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkeyutils.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkeyutils.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkeyutils.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5support.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5support.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libkrb5support.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblcms2.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblcms2.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblcms2.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblzma.so.5
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblzma.so.5: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liblzma.so.5'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmanette-0.2.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmanette-0.2.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmanette-0.2.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmount.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmount.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libmount.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libnghttp2.so.14
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libnghttp2.so.14: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libnghttp2.so.14'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liborc-0.4.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liborc-0.4.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/liborc-0.4.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpango-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpango-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpango-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangocairo-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangocairo-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangocairo-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangoft2-1.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangoft2-1.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpangoft2-1.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpcre2-8.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpcre2-8.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpcre2-8.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpixman-1.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpixman-1.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpixman-1.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpng16.so.16
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpng16.so.16: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpng16.so.16'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpsl.so.5
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpsl.so.5: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libpsl.so.5'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/librav1e.so.0.7
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libseccomp.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libseccomp.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libseccomp.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsecret-1.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsecret-1.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsecret-1.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsharpyuv.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsharpyuv.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsharpyuv.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsoup-3.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsoup-3.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsoup-3.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsqlite3.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsqlite3.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsqlite3.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsystemd.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsystemd.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libsystemd.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtasn1.so.6
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtasn1.so.6: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtasn1.so.6'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libthai.so.0
Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtiff.so.6
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtiff.so.6: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtiff.so.6'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtinysparql-3.0.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtinysparql-3.0.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtinysparql-3.0.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-esys.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-esys.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-esys.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-mu.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-mu.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-mu.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-rc.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-rc.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-rc.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-sys.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-sys.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-sys.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-tctildr.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-tctildr.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libtss2-tctildr.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libudev.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libudev.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libudev.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunistring.so.5
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunistring.so.5: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunistring.so.5'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunwind.so.8
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunwind.so.8: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libunwind.so.8'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-client.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-client.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-client.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-cursor.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-cursor.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-cursor.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-egl.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-egl.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-egl.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-server.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-server.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwayland-server.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebkit2gtk-4.1.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebkit2gtk-4.1.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebkit2gtk-4.1.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebp.so.7
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebp.so.7: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebp.so.7'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpdemux.so.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpdemux.so.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpdemux.so.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpmux.so.3
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpmux.so.3: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwebpmux.so.3'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2common.so.1.0.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2common.so.1.0.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2common.so.1.0.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2dec.so.1.0.2
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2dec.so.1.0.2: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libwoff2dec.so.1.0.2'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-render.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-render.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-render.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-shm.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-shm.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxcb-shm.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxkbcommon.so.0
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxkbcommon.so.0: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxkbcommon.so.0'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxml2.so.16
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxml2.so.16: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxml2.so.16'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxslt.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxslt.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libxslt.so.1'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libyuv.so
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libyuv.so: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libyuv.so'

Calling strip on library /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libzstd.so.1
ERROR: Strip call failed: /tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: /home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libzstd.so.1: unknown type [0x13] section `.relr.dyn'
/tmp/appimage_extracted_5a27dadc81a3abf452534fdbee9c58ee/usr/bin/strip: Unable to recognise the format of the input file `/home/thales/Documents/workspace/tauri-app/src-tauri/target/release/bundle/appimage/tauri-app.AppDir/usr/lib/libzstd.so.1'

       Error [tauri_cli] failed to bundle project `failed to run /home/thales/.cache/tauri/linuxdeploy-x86_64.AppImage`

i'm try

wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
chmod 755 ./linuxdeploy-x86_64.AppImage
./linuxdeploy-x86_64.AppImage --appimage-extract
rm squashfs-root/usr/bin/strip
squashfs-root/plugins/linuxdeploy-plugin-appimage/appimagetool-prefix/usr/bin/appimagetool -gn squashfs-root/
rm -r squashfs-root

and

NO_STRIP=true

none of these solutions are ideal, as the same error still occurs.

jingpengju391 avatar Nov 26 '25 07:11 jingpengju391

hmm, NO_STRIP=true is the solution for that error though πŸ€”

p.s. completely unrelated to this gh issue btw

FabianLars avatar Nov 26 '25 09:11 FabianLars

@FabianLars year, I came across this issue after looking through many others.

by the way, when will the version that replaces linuxdeploy be released, and will it fully resolve this issue? although setting NO_STRIP=true works as a workaround, the resulting AppImage is too large.

and wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage chmod 755 ./linuxdeploy-x86_64.AppImage ./linuxdeploy-x86_64.AppImage --appimage-extract rm squashfs-root/usr/bin/strip squashfs-root/plugins/linuxdeploy-plugin-appimage/appimagetool-prefix/usr/bin/appimagetool -gn squashfs-root/ rm -r squashfs-root does this method work?

jingpengju391 avatar Nov 26 '25 09:11 jingpengju391

by the way, when will the version that replaces linuxdeploy be released

you mean https://github.com/tauri-apps/tauri/pull/12491 ? not sure yet, i'm lacking motivation for linux and the tech used there has some problems as well (it's appimage related after all)

and will it fully resolve this issue?

hopefully yes

and wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage chmod 755 ./linuxdeploy-x86_64.AppImage ./linuxdeploy-x86_64.AppImage --appimage-extract rm squashfs-root/usr/bin/strip squashfs-root/plugins/linuxdeploy-plugin-appimage/appimagetool-prefix/usr/bin/appimagetool -gn squashfs-root/ rm -r squashfs-root does this method work?

never tried it so no guarantees but i guess it should unless our bundler overwrites the file (which it shouldn't i think)

FabianLars avatar Nov 26 '25 10:11 FabianLars

@FabianLars thanks again! at the very least, the response from the tauri team has been really prompt. regarding using the system's strip instead of linuxdeploy's, i gave it a try but it didn't work. i'll keep experimentingβ€”if there are any new developments and the packaging size shows a noticeable improvement, i'll circle back.

jingpengju391 avatar Nov 27 '25 01:11 jingpengju391