change default bash compiler to clang

This commit is contained in:
Yehonal
2016-08-20 09:49:55 +02:00
parent 1b1767e9f4
commit 1c9eb7e52f

View File

@@ -1,8 +1,5 @@
#!/bin/bash
#!/bin/bash
# absolute root path of your azerothshard repository
SRCPATH="$AC_PATH_ROOT"
# absolute path where binary files must be stored
@@ -18,10 +15,10 @@ CONFDIR="$AC_PATH_ROOT/build/etc/"
# set preferred compilers
#CCOMPILERC="/usr/bin/clang-3.6"
#CCOMPILERCXX="/usr/bin/clang++-3.6"
CCOMPILERC="/usr/bin/gcc"
CCOMPILERCXX="/usr/bin/g++"
CCOMPILERC="/usr/bin/clang"
CCOMPILERCXX="/usr/bin/clang++"
#CCOMPILERC="/usr/bin/gcc"
#CCOMPILERCXX="/usr/bin/g++"
# how many thread must be used for compilation ( leave zero to use all available )
MTHREADS=0