aboutsummaryrefslogtreecommitdiff
path: root/build/build_make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/build_make.sh')
-rwxr-xr-xbuild/build_make.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/build_make.sh b/build/build_make.sh
index dd458aea..ba03c99c 100755
--- a/build/build_make.sh
+++ b/build/build_make.sh
@@ -62,7 +62,7 @@ function clean_build_dir() {
}
function usage () {
-echo "Usage: `basename $0` [--prefix /install_prefix|--build [debug|final]|--clean|--verbose|--libsuffix (32|64)|--help|--cmakedir /directory|--make
+echo "Usage: `basename $0` [--prefix /install_prefix|--build [debug|final]|--clean|--verbose|--libsuffix (32|64)|--help|--clang|--cmakedir /directory|--make
(gmake|make)|--ccompiler (gcc|cc)|--withstaticlib|--unittesting|--clientunittesting|--withssh1|--withserver]"
cleanup_and_exit
}
@@ -100,6 +100,9 @@ while test -n "$1"; do
clean_build_dir
cleanup_and_exit
;;
+ *-clang)
+ OPTIONS="${OPTIONS} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++"
+ ;;
*-verbose)
DOVERBOSE="1"
;;