Skip to content

Commit

Permalink
AppImage fix.
Browse files Browse the repository at this point in the history
  - Removing standard system libraries from AppImage build:
    * libc.so
    * libdl.so
    * libpthread.so
    * libstdc++.so
    * libm.so
  • Loading branch information
Miguel Aranha Baldi Horlle committed Apr 9, 2024
1 parent b811ede commit a1954f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ openssl-src = { version = "300", default-features = false, features = ["force-en
[package.metadata.appimage]
auto_link = true
auto_link_exclude_list = [
#"libc.so*",
"libc.so*",
"libdl.so*",
"libpthread.so*",
"libstdc++.so*",
"libm.so*",
]

0 comments on commit a1954f8

Please sign in to comment.