svn commit: r341862 - head/devel/ccache

Bryan Drewery bdrewery at FreeBSD.org
Thu Jan 30 17:06:31 UTC 2014


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 at 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}


More information about the svn-ports-all mailing list