Restore gcc 4.8 version check

I accidentally broke it when making changes
This commit is contained in:
Enji Cooper 2017-10-22 23:36:43 +00:00
parent 6406a0d3c1
commit 2d457ca3c7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/runtime-coverage/; revision=324884

View File

@ -468,7 +468,7 @@ MK_${var}_SUPPORT:= yes
MK_LLDB:= no
.endif
.if ${COMPILER_TYPE} == "gcc"
.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.