svn commit: r324884 - projects/runtime-coverage/share/mk
Ngie Cooper
ngie at FreeBSD.org
Sun Oct 22 23:36:45 UTC 2017
Author: ngie
Date: Sun Oct 22 23:36:43 2017
New Revision: 324884
URL: https://svnweb.freebsd.org/changeset/base/324884
Log:
Restore gcc 4.8 version check
I accidentally broke it when making changes
Modified:
projects/runtime-coverage/share/mk/src.opts.mk
Modified: projects/runtime-coverage/share/mk/src.opts.mk
==============================================================================
--- projects/runtime-coverage/share/mk/src.opts.mk Sun Oct 22 22:52:27 2017 (r324883)
+++ projects/runtime-coverage/share/mk/src.opts.mk Sun Oct 22 23:36:43 2017 (r324884)
@@ -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.
More information about the svn-src-projects
mailing list