From 6a48b219e60fcf47f458f6bf9dcfa9bfe1bb35ce Mon Sep 17 00:00:00 2001 From: simon987 Date: Sun, 5 Sep 2021 12:19:44 -0400 Subject: [PATCH] Fix build_arm64.sh & update README --- README.md | 2 +- ci/build_arm64.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab06a04..e9f1594 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ sist2 (Simple incremental search tool) 1. Download sist2 executable 1. Download the [latest sist2 release](https://github.com/simon987/sist2/releases) * 1. *(or)* Download a [development snapshot](https://files.simon987.net/.gate/sist2/simon987_sist2/) *(Not recommended!)* - 1. *(or)* `docker pull simon987/sist2:2.10.3-x64-linux` + 1. *(or)* `docker pull simon987/sist2:2.11.0-x64-linux` 1. See [Usage guide](docs/USAGE.md) diff --git a/ci/build_arm64.sh b/ci/build_arm64.sh index c9fe65e..d144319 100755 --- a/ci/build_arm64.sh +++ b/ci/build_arm64.sh @@ -8,7 +8,7 @@ rm -rf CMakeFiles CMakeCache.txt cmake -DSIST_PLATFORM=arm64_linux -DSIST_DEBUG=off -DBUILD_TESTS=off -DCMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" . make -j $(nproc) strip sist2 -mv sist2 sist2-arm64-linux +mv sist2_debug sist2-arm64-linux-debug rm -rf CMakeFiles CMakeCache.txt cmake -DSIST_PLATFORM=arm64_linux -DSIST_DEBUG=on -DBUILD_TESTS=off -DCMAKE_TOOLCHAIN_FILE="${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" .