Skip to content

Improve linux portable binaries #1693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: testnet
Choose a base branch
from
Open
3 changes: 1 addition & 2 deletions .github/workflows/build-ton-linux-x86-64-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
- name: Install system libraries
run: |
sudo apt update
sudo apt install -y build-essential git cmake ninja-build zlib1g-dev libsecp256k1-dev libmicrohttpd-dev libsodium-dev liblz4-dev ccache
sudo apt remove libgsl-dev
sudo apt install -y build-essential git cmake ninja-build zlib1g-dev libsecp256k1-dev libmicrohttpd-dev libsodium-dev liblz4-dev ccache libgsl-dev libblas-dev
mkdir ~/.ccache 3pp

- name: Install clang-16
Expand Down
2 changes: 2 additions & 0 deletions assembly/appimage/create-appimages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ for file in ../artifacts/*; do
/lib/$ARCH-linux-gnu/libmicrohttpd.so.12 \
/lib/$ARCH-linux-gnu/libreadline.so.8 \
/lib/$ARCH-linux-gnu/libstdc++.so.6 \
/lib/$ARCH-linux-gnu/libgsl.so.27 \
/lib/$ARCH-linux-gnu/libblas.so.3 \
$appName.AppDir/usr/lib/

chmod +x ./$appName.AppDir/usr/bin/$appName
Expand Down