From a1954f8fb39cda87d7adc3a4d30790a700557e7f Mon Sep 17 00:00:00 2001 From: Miguel Aranha Baldi Horlle Date: Tue, 9 Apr 2024 01:00:22 -0300 Subject: [PATCH] AppImage fix. - Removing standard system libraries from AppImage build: * libc.so * libdl.so * libpthread.so * libstdc++.so * libm.so --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 80b9387..5a787a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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*", ]