svn commit: r510183 - head/devel/avr-gcc

Piotr Kubaj pkubaj at FreeBSD.org
Thu Aug 29 19:39:59 UTC 2019


Author: pkubaj
Date: Thu Aug 29 19:39:58 2019
New Revision: 510183
URL: https://svnweb.freebsd.org/changeset/ports/510183

Log:
  devel/avr-gcc: fix build on GCC architectures
  
  GCC 9.1 needs newer GCC to build than base can offer.
  
  It also seems that there are some threading issues, so put MAKE_JOBS_UNSAFE.
  
  PR:		240002
  Approved by:	joerg (maintainer), linimon (mentor)

Modified:
  head/devel/avr-gcc/Makefile

Modified: head/devel/avr-gcc/Makefile
==============================================================================
--- head/devel/avr-gcc/Makefile	Thu Aug 29 19:38:37 2019	(r510182)
+++ head/devel/avr-gcc/Makefile	Thu Aug 29 19:39:58 2019	(r510183)
@@ -24,7 +24,8 @@ LIB_DEPENDS=	libmpfr.so:math/mpfr \
 RUN_DEPENDS=	avr-as:devel/avr-binutils \
 		avr-ld:devel/avr-binutils
 
-USES=		bison gmake iconv libtool makeinfo perl5 tar:xz
+USES=		bison compiler:c++11-lang gmake iconv libtool localbase \
+		makeinfo perl5 tar:xz
 
 # DIST_VERSION relates to downloads, GCC_VERSION and SUFFIX to names
 # of executables and directories once installed.  A PORTVERSION of
@@ -35,8 +36,8 @@ GCC_VERSION=	${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/}
 SUFFIX=		${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
 
 USE_PERL5=	build
-CPPFLAGS+=	-I${LOCALBASE}/include
 GNU_CONFIGURE=	yes
+MAKE_JOBS_UNSAFE=	yes
 
 CONFLICTS=	avr-gcc-devel*
 


More information about the svn-ports-all mailing list