Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Oct 2017 23:36:44 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r324884 - projects/runtime-coverage/share/mk
Message-ID:  <201710222336.v9MNaiP9022164@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710222336.v9MNaiP9022164>