Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jan 2014 17:06:30 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r341862 - head/devel/ccache
Message-ID:  <201401301706.s0UH6UVJ040155@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Jan 30 17:06:30 2014
New Revision: 341862
URL: http://svnweb.freebsd.org/changeset/ports/341862
QAT: https://qat.redports.org/buildarchive/r341862/

Log:
  - Add support for clang31,32,33,34 links
  
  PR:		ports/186220
  Submitted by:	Dmitry Marakasov <amdmi3@amdmi3.ru>

Modified:
  head/devel/ccache/Makefile

Modified: head/devel/ccache/Makefile
==============================================================================
--- head/devel/ccache/Makefile	Thu Jan 30 16:46:22 2014	(r341861)
+++ head/devel/ccache/Makefile	Thu Jan 30 17:06:30 2014	(r341862)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ccache
 PORTVERSION=	3.1.9
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	devel
 MASTER_SITES=	http://www.samba.org/ftp/ccache/ \
 		CRITICAL
@@ -39,11 +39,12 @@ PLIST_SUB+=	CCLINKDIR="${CCLINKDIR}"
 CCACHE_COMPILERS+=	icc icpc
 .endif
 
-GNU_COMPILERS+=		34 42 43 44 45 46 47 48
+GNU_COMPILERS+=		34 42 43 44 45 46 47 48 49
 CCACHE_COMPILERS+=	cc c++ gcc g++ ${GNU_COMPILERS:S|^|gcc|} ${GNU_COMPILERS:S|^|g++|}
 
 .if ${PORT_OPTIONS:MCLANGLINK}
-CCACHE_COMPILERS+=	clang clang++
+CLANG_COMPILERS+=	31 32 33 34
+CCACHE_COMPILERS+=	clang clang++ ${CLANG_COMPILERS:S|^|clang|} ${CLANG_COMPILERS:S|^|clang++|}
 .endif
 
 .if ${PORT_OPTIONS:MLLVMLINK}



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