Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Aug 2019 19:39:59 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r510183 - head/devel/avr-gcc
Message-ID:  <201908291939.x7TJdxwj096396@repo.freebsd.org>

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



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