mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
15afc4b4bb
Former-commit-id: 7acb08bb5d8d2d64ab1b64ac73ae5373c01d6e80
59 lines
1.0 KiB
Bash
Executable File
59 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
BUILD_TYPE="Debug"
|
|
BUILD_UNITTEST="off"
|
|
|
|
while getopts "p:t:uh" arg
|
|
do
|
|
case $arg in
|
|
t)
|
|
BUILD_TYPE=$OPTARG # BUILD_TYPE
|
|
;;
|
|
u)
|
|
echo "Build and run unittest cases" ;
|
|
BUILD_UNITTEST="on";
|
|
;;
|
|
h) # help
|
|
echo "
|
|
|
|
parameter:
|
|
-t: build type
|
|
-u: building unit test options
|
|
|
|
usage:
|
|
./build.sh -t \${BUILD_TYPE} [-u] [-h]
|
|
"
|
|
exit 0
|
|
;;
|
|
?)
|
|
echo "unknown argument"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ -d cmake_build ]]; then
|
|
rm cmake_build -r
|
|
fi
|
|
|
|
rm -rf ./cmake_build
|
|
mkdir cmake_build
|
|
cd cmake_build
|
|
|
|
CUDA_COMPILER=/usr/local/cuda/bin/nvcc
|
|
|
|
CMAKE_CMD="cmake -DBUILD_UNIT_TEST=${BUILD_UNITTEST} \
|
|
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
|
|
-DCMAKE_CUDA_COMPILER=${CUDA_COMPILER} \
|
|
$@ ../"
|
|
echo ${CMAKE_CMD}
|
|
|
|
${CMAKE_CMD}
|
|
|
|
make clean && make -j || exit 1
|
|
|
|
if [[ ${BUILD_TYPE} != "Debug" ]]; then
|
|
strip src/vecwise_server
|
|
fi
|
|
|