Every day I'm shuffling (comments) to diff reduce

This commit is contained in:
Enji Cooper 2017-10-23 08:03:59 +00:00
parent 2e5ab5865f
commit eb5c1cb298
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/runtime-coverage/; revision=324913

View File

@ -475,13 +475,13 @@ MK_${var}_SUPPORT:= yes
MK_LLDB:= no
.endif
.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
# gcc 4.8 and newer supports libc++, so suppress gnuc++ in that case.
# while in theory we could build it with that, we don't want to do
# that since it creates too much confusion for too little gain.
# XXX: This is incomplete and needs X_COMPILER_TYPE/VERSION checks too
# to prevent Makefile.inc1 from bootstrapping unneeded dependencies
# and to support 'make delete-old' when supplying an external toolchain.
.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 40800
MK_GNUCXX:=no
MK_GCC:=no
.endif