Skip to content

Commit

Permalink
add libreadline
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Dec 26, 2024
1 parent 3482bd8 commit 3abf95c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
11 changes: 6 additions & 5 deletions assembly/appimage/create-appimages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi

rm -rf appimages

mkdir -p appimages/artifacts2
mkdir -p appimages/artifacts

wget -nc https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x ./appimagetool-x86_64.AppImage
Expand All @@ -31,16 +31,17 @@ for file in ../artifacts/*; do
/lib/x86_64-linux-gnu/libz.so.1 \
/lib/x86_64-linux-gnu/liblz4.so.1 \
/lib/x86_64-linux-gnu/libmicrohttpd.so.12 \
/usr/lib/x86_64-linux-gnu/libreadline.so \
$appName.AppDir/usr/lib/

chmod +x ./$appName.AppDir/usr/bin/$appName
# create AppImage
./../appimagetool-x86_64.AppImage $appName.AppDir
mv $appName-x86_64.AppImage artifacts2/$appName
mv $appName-x86_64.AppImage artifacts/$appName
fi
done

ls -larth artifacts2
cp -r ../artifacts/{smartcont,lib} artifacts2/
ls -larth artifacts
cp -r ../artifacts/{smartcont,lib} artifacts/
pwd
ls -larth artifacts2
ls -larth artifacts
5 changes: 5 additions & 0 deletions assembly/native/build-ubuntu-appimages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,15 @@ fi
./lite-client/lite-client -V || exit 1
./crypto/fift -V || exit 1

echo validator-engine
ldd ./validator-engine/validator-engine || exit 1
ldd ./validator-engine-console/validator-engine-console || exit 1
ldd ./crypto/fift || exit 1
echo blockchain-explorer
ldd ./blockchain-explorer/blockchain-explorer || exit 1
echo libtonlibjson.so
ldd ./tonlib/libtonlibjson.so.0.5 || exit 1
echo libemulator.so
ldd ./emulator/libemulator.so || exit 1

cd ..
Expand Down

0 comments on commit 3abf95c

Please sign in to comment.