2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-12 14:48:00 +03:00

build.sh add help [skip ci]

This commit is contained in:
s1lentq 2021-04-13 05:39:29 +07:00
parent 1d15946cff
commit 13e2db3423

View File

@ -1,13 +1,20 @@
#!/bin/bash
CC=gcc
CXX=g++
main()
{
CC=gcc
CXX=g++
n=0
args=()
for i in "$@"
do
case $i in
if [[ "$*" =~ "--help" ]]; then
help
exit 0;
fi
n=0
args=()
for i in "$@"
do
case $i in
-j=*|--jobs=*)
jobs="-j${i#*=}"
shift
@ -20,20 +27,34 @@ case $i in
args[$n]="$i"
((++n))
;;
esac
done
esac
done
case "$C" in
case "$C" in
("intel"|"icc") CC=icc CXX=icpc ;;
("gcc") CC=gcc CXX=g++ ;;
("clang") CC=clang CXX=clang++ ;;
("gcc"|"g++") CC=gcc CXX=g++ ;;
("clang|llvm") CC=clang CXX=clang++ ;;
*)
;;
esac
esac
rm -rf build
mkdir build
pushd build &> /dev/null
CC=$CC CXX=$CXX cmake ${args[@]} ..
make ${jobs}
popd > /dev/null
rm -rf build
mkdir build
pushd build &> /dev/null
CC=$CC CXX=$CXX cmake ${args[@]} ..
make ${jobs}
popd > /dev/null
}
help()
{
printf "Usage: ./build.sh <options>\n\n"
printf " -c= | --compiler=<icc|gcc|clang> - Select preferred C/C++ compiler to build\n"
printf " -j= | --jobs=<N> - Specifies the number of jobs (commands) to run simultaneously (For faster building)\n\n"
}
# Initialize
main $*
# Exit normally
exit 0