mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
add libreadline
This commit is contained in:
parent
3482bd85b5
commit
3abf95c256
2 changed files with 11 additions and 5 deletions
|
@ -7,7 +7,7 @@ fi
|
||||||
|
|
||||||
rm -rf appimages
|
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
|
wget -nc https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage
|
||||||
chmod +x ./appimagetool-x86_64.AppImage
|
chmod +x ./appimagetool-x86_64.AppImage
|
||||||
|
@ -31,16 +31,17 @@ for file in ../artifacts/*; do
|
||||||
/lib/x86_64-linux-gnu/libz.so.1 \
|
/lib/x86_64-linux-gnu/libz.so.1 \
|
||||||
/lib/x86_64-linux-gnu/liblz4.so.1 \
|
/lib/x86_64-linux-gnu/liblz4.so.1 \
|
||||||
/lib/x86_64-linux-gnu/libmicrohttpd.so.12 \
|
/lib/x86_64-linux-gnu/libmicrohttpd.so.12 \
|
||||||
|
/usr/lib/x86_64-linux-gnu/libreadline.so \
|
||||||
$appName.AppDir/usr/lib/
|
$appName.AppDir/usr/lib/
|
||||||
|
|
||||||
chmod +x ./$appName.AppDir/usr/bin/$appName
|
chmod +x ./$appName.AppDir/usr/bin/$appName
|
||||||
# create AppImage
|
# create AppImage
|
||||||
./../appimagetool-x86_64.AppImage $appName.AppDir
|
./../appimagetool-x86_64.AppImage $appName.AppDir
|
||||||
mv $appName-x86_64.AppImage artifacts2/$appName
|
mv $appName-x86_64.AppImage artifacts/$appName
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
ls -larth artifacts2
|
ls -larth artifacts
|
||||||
cp -r ../artifacts/{smartcont,lib} artifacts2/
|
cp -r ../artifacts/{smartcont,lib} artifacts/
|
||||||
pwd
|
pwd
|
||||||
ls -larth artifacts2
|
ls -larth artifacts
|
||||||
|
|
|
@ -72,10 +72,15 @@ fi
|
||||||
./lite-client/lite-client -V || exit 1
|
./lite-client/lite-client -V || exit 1
|
||||||
./crypto/fift -V || exit 1
|
./crypto/fift -V || exit 1
|
||||||
|
|
||||||
|
echo validator-engine
|
||||||
ldd ./validator-engine/validator-engine || exit 1
|
ldd ./validator-engine/validator-engine || exit 1
|
||||||
|
ldd ./validator-engine-console/validator-engine-console || exit 1
|
||||||
ldd ./crypto/fift || exit 1
|
ldd ./crypto/fift || exit 1
|
||||||
|
echo blockchain-explorer
|
||||||
ldd ./blockchain-explorer/blockchain-explorer || exit 1
|
ldd ./blockchain-explorer/blockchain-explorer || exit 1
|
||||||
|
echo libtonlibjson.so
|
||||||
ldd ./tonlib/libtonlibjson.so.0.5 || exit 1
|
ldd ./tonlib/libtonlibjson.so.0.5 || exit 1
|
||||||
|
echo libemulator.so
|
||||||
ldd ./emulator/libemulator.so || exit 1
|
ldd ./emulator/libemulator.so || exit 1
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue