mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
43 lines
867 B
Bash
Executable File
43 lines
867 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Using CC=$CC CXX=$CXX"
|
|
|
|
CMAKE_ARGS="$@"
|
|
BUILD_PATH="/tmp/builds"
|
|
mkdir -p $BUILD_PATH
|
|
INSTALL_PATH="$BUILD_PATH/install"
|
|
mkdir -p $INSTALL_PATH
|
|
|
|
# install_library <git_repo> [<commit>]
|
|
function install_library {
|
|
CURRENT_DIR=`pwd`
|
|
cd $BUILD_PATH
|
|
git clone https://github.com/awslabs/$1.git
|
|
|
|
cd $1
|
|
if [ -n "$2" ]; then
|
|
git checkout $2
|
|
fi
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH -DCMAKE_PREFIX_PATH=$INSTALL_PATH -DENABLE_SANITIZERS=ON $CMAKE_ARGS ./
|
|
make install
|
|
|
|
cd $CURRENT_DIR
|
|
}
|
|
|
|
install_library aws-c-common
|
|
install_library aws-checksums
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH -DCMAKE_PREFIX_PATH=$INSTALL_PATH -DENABLE_SANITIZERS=ON $CMAKE_ARGS ../
|
|
make
|
|
|
|
LSAN_OPTIONS=verbosity=1:log_threads=1 ctest --output-on-failure
|
|
|
|
cd ..
|
|
|
|
# ./cppcheck.sh ../install/include
|