mirror of
https://github.com/dragonflydb/dragonfly
synced 2024-11-22 07:33:19 +00:00
448d065647
Also, enhance release script to apply linker optimizations when building the binaries. Signed-off-by: Roman Gershman <roman@dragonflydb.io>
24 lines
496 B
Bash
Executable File
24 lines
496 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if ! [ -d helio ]; then
|
|
echo "could not find helio"
|
|
exit 1
|
|
fi
|
|
|
|
ARCH=`uname -m`
|
|
NAME="dragonfly-${ARCH}"
|
|
|
|
pwd
|
|
./helio/blaze.sh -release -DBoost_USE_STATIC_LIBS=ON -DOPENSSL_USE_STATIC_LIBS=ON \
|
|
-DENABLE_GIT_VERSION=ON -DWITH_UNWIND=OFF -DHELIO_RELEASE_FLAGS="-flto"
|
|
|
|
cd build-opt
|
|
ninja dragonfly && ldd dragonfly
|
|
./dragonfly --version
|
|
mv dragonfly $NAME
|
|
tar cvfz $NAME.unstripped.tar.gz $NAME ../LICENSE.md
|
|
strip $NAME
|
|
tar cvfz $NAME.tar.gz $NAME ../LICENSE.md
|