#!/bin/bash
set -e
CUR_DIR=$(dirname $(readlink -f $0))
TOP_DIR=${CUR_DIR}/..
VERSION=""
PACKAGE_TYPE=""
BUILD_TYPE=""
if [[ $# > 2 ]];
then
echo "[ERROR]Please input valid param, for example:"
echo " ./build.sh # Default"
echo " ./build.sh Debug # Debug"
echo " ./build.sh [version] # With Version"
echo " ./build.sh [version] [Patch] # With Version and Patch"
exit
fi
if [ $# = 1 ] && [ "$1" = "Debug" ];
then
BUILD_TYPE="Debug"
elif [ $# = 1 ] && [ "$1" != "Debug" ];
then
VERSION=$1
elif [ $# = 2 ];
then
VERSION=$1
PACKAGE_TYPE=$2
fi
function bep_env_init() {
source /etc/profile
local bep_env_config=${CUR_DIR}/bep/bep_env.conf
local bep_sh=$(which bep_env.sh)
echo "has bep sh :${bep_sh}"
if [ ! -d "${SECBEPKIT_HOME}" ] && [ ! -f "$bep_sh" ]; then
echo "BepKit is not installed, Please install the tool and configure the env var \$SECBEPKIT_HOME"
else
source ${SECBEPKIT_HOME}/bep_env.sh -s $bep_env_config
if [ $? -ne 0 ]; then
echo "build bep failed!"
exit 1
else
echo "build bep success."
fi
fi
}
bep_env_init
mkdir -p ${TOP_DIR}/build/prefix
cmake -S ${TOP_DIR}/cmake/superbuild/ -B ${TOP_DIR}/build/build -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DHITEST=${HI_TEST} -DCMAKE_INSTALL_PREFIX=${TOP_DIR}/build/prefix -DOBJECT=all
cd ${TOP_DIR}/build/build; make -j$(nproc)
bash ${TOP_DIR}/scripts/create_run_package.sh ${VERSION} ${PACKAGE_TYPE}