STYLE: update some instructions in makeLLVM

This commit is contained in:
mark
2016-06-30 15:55:20 +02:00
parent 68b7b8c135
commit 7ec9f0713f
7 changed files with 48 additions and 26 deletions

9
makeQt
View File

@ -58,12 +58,12 @@ options:
USAGE
exit 1
}
#------------------------------------------------------------------------------
# ensure configure gets the correct C++ compiler
# ensure configure gets the correct C/C++ compiler
[ -n "$WM_CC" ] && export CC="$WM_CC"
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
# parse options
while [ "$#" -gt 0 ]
do
@ -72,7 +72,8 @@ do
usage
;;
-gcc)
export CXX=g++ # use g++
export CC=gcc # use gcc/g++
export CXX=g++
;;
[1-9]* | qt-[1-9]*)
qtVERSION="${1%%/}";