change default bash compiler to clang
This commit is contained in:
parent
1b1767e9f4
commit
1c9eb7e52f
1 changed files with 4 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue