summaryrefslogtreecommitdiff
path: root/Config
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2015-05-17 21:27:09 +0100
committerPeter Powell <petpow@saberuk.com>2015-05-17 21:27:09 +0100
commit2f9eabdb7237f607169ec0576b1cb7945db83304 (patch)
tree071679e0d3e1c84f12fa8fc1a376300207225ad7 /Config
parent0f1936f63d0207d7a1ab4a4d06a0d3b80891f6ee (diff)
Remove support for run-cc.
This tool is not useful anymore. It just slows the build down.
Diffstat (limited to 'Config')
-rwxr-xr-xConfig32
1 files changed, 0 insertions, 32 deletions
diff --git a/Config b/Config
index ed7a0509c..28f046150 100755
--- a/Config
+++ b/Config
@@ -62,12 +62,6 @@ Run_Build_System () {
BUILD_TYPE="-DCMAKE_BUILD_TYPE:STRING=RELEASE"
fi
- if [ "$USE_RUN_CC_PL" = "yes" ] ; then
- RUN_CC_PL="-DUSE_RUN_CC_PL:BOOLEAN=ON"
- else
- RUN_CC_PL="-DUSE_RUN_CC_PL:BOOLEAN=OFF"
- fi
-
if [ "$USE_PCH" = "yes" ] ; then
PCH="-DUSE_PCH:BOOLEAN=ON"
else
@@ -131,7 +125,6 @@ INSTDIR=$HOME/services
RUNGROUP=
UMASK=
DEBUG="no"
-USE_RUN_CC_PL="no"
USE_PCH="no"
EXTRA_INCLUDE_DIRS=
EXTRA_LIB_DIRS=
@@ -322,30 +315,6 @@ echo ""
####
TEMP_YN="n"
-if [ "$USE_RUN_CC_PL" = "yes" ] ; then
- TEMP_YN="y"
-fi
-echo "You can optionally have the build run through run-cc.pl, which will"
-echo "cause warnings and errors (if any) to be colored yellow and red,"
-echo "respectively. This relies on Perl being installed, so if you say yes"
-echo "to this without Perl, the option will be ignored."
-echo "NOTE: If you are using MinGW, it is NOT recommended to say yes to"
-echo "this, it may fail."
-echo "Would you like to utilize run-cc.pl?"
-echo2 "[$TEMP_YN] "
-read YN
-if [ "$YN" ] ; then
- if [ "$YN" = "y" ] ; then
- USE_RUN_CC_PL="yes"
- else
- USE_RUN_CC_PL="no"
- fi
-fi
-echo ""
-
-####
-
-TEMP_YN="n"
if [ "$USE_PCH" = "yes" ] ; then
TEMP_YN="y"
fi
@@ -426,7 +395,6 @@ INSTDIR="$INSTDIR"
RUNGROUP="$RUNGROUP"
UMASK=$UMASK
DEBUG="$DEBUG"
-USE_RUN_CC_PL="$USE_RUN_CC_PL"
USE_PCH="$USE_PCH"
EXTRA_INCLUDE_DIRS="$EXTRA_INCLUDE_DIRS"
EXTRA_LIB_DIRS="$EXTRA_LIB_DIRS"