svn commit: r333554 - head/Mk/Uses

Baptiste Daroussin bapt at FreeBSD.org
Tue Nov 12 09:25:44 UTC 2013


Author: bapt
Date: Tue Nov 12 09:25:43 2013
New Revision: 333554
URL: http://svnweb.freebsd.org/changeset/ports/333554

Log:
  On FreeBSD 8 clang will need a newer version of binutils.
  
  Reported by:	dbn

Modified:
  head/Mk/Uses/compiler.mk

Modified: head/Mk/Uses/compiler.mk
==============================================================================
--- head/Mk/Uses/compiler.mk	Tue Nov 12 09:25:42 2013	(r333553)
+++ head/Mk/Uses/compiler.mk	Tue Nov 12 09:25:43 2013	(r333554)
@@ -126,6 +126,9 @@ BUILD_DEPENDS+=	${LOCALBASE}/bin/clang33
 CPP=	${LOCALBASE}/bin/clang-cpp33
 CC=	${LOCALBASE}/bin/clang33
 CXX=	${LOCALBASE}/bin/clang++33
+.if ${OSVERSION} < 900033
+USE_BINUTILS=	yes
+.endif
 .endif
 .endif
 .endif
@@ -140,6 +143,9 @@ BUILD_DEPENDS+=	${LOCALBASE}/bin/clang33
 CPP=	${LOCALBASE}/bin/clang-cpp33
 CC=	${LOCALBASE}/bin/clang33
 CXX=	${LOCALBASE}/bin/clang++33
+.if ${OSVERSION} < 900033
+USE_BINUTILS=	yes
+.endif
 .endif
 .endif
 .endif


More information about the svn-ports-all mailing list