mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 18:35:46 +02:00
Also, enhance release script to apply linker optimizations when building the binaries. Signed-off-by: Roman Gershman <roman@dragonflydb.io>
23 lines
496 B
Bash
Executable file
23 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
|