diff options
author | Peter Powell <petpow@saberuk.com> | 2015-03-22 00:54:56 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-05-13 15:22:44 +0100 |
commit | 01dee272ca360fe8cd227583061ec5a11c2dadc1 (patch) | |
tree | 0f3608fb74b7acb0ab8e8ae9caa7e10bb92d0d2a /make/template | |
parent | 4b3e466c8027989fc3b453bdd5a55b2ed42e9d43 (diff) |
Remove run-cc.pl and all associated code.
As far as I can tell this only worked with older versions of GCC
and there is no value in fixing it as diagnostics have improved
since then and it makes errors hard to search for anyway.
This also shaves off an average of five seconds on each build on
my hardware. Neat!
Diffstat (limited to 'make/template')
-rw-r--r-- | make/template/main.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index 9630905b1..3e7ee1844 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -114,14 +114,10 @@ FOOTER = finishmessage @TARGET BSD_MAKE SOURCEPATH != /bin/pwd @IFDEF V - RUNCC = $(CXX) - RUNLD = $(CXX) VERBOSE = -v @ELSE @TARGET GNU_MAKE MAKEFLAGS += --silent @TARGET BSD_MAKE MAKE += -s - RUNCC = perl $(SOURCEPATH)/make/run-cc.pl $(CXX) - RUNLD = perl $(SOURCEPATH)/make/run-cc.pl $(CXX) VERBOSE = @ENDIF @@ -133,7 +129,7 @@ FOOTER = finishmessage # things like -Wfatal-errors if they wish to. CORECXXFLAGS += $(CXXFLAGS) -@DO_EXPORT RUNCC RUNLD CORECXXFLAGS LDLIBS PICLDFLAGS VERBOSE SOCKETENGINE CORELDFLAGS +@DO_EXPORT CXX CORECXXFLAGS LDLIBS PICLDFLAGS VERBOSE SOCKETENGINE CORELDFLAGS @DO_EXPORT SOURCEPATH BUILDPATH PURE_STATIC # Default target |