Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jun 2019 15:55:37 +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: r503965 - head/lang/plexil
Message-ID:  <201906111555.x5BFtbSc062995@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Jun 11 15:55:37 2019
New Revision: 503965
URL: https://svnweb.freebsd.org/changeset/ports/503965

Log:
  lang/plexil: fix build
  
  Replace USE_GCC=any with USE_GCC=yes.
  
  New GCC is now needed:
  ../utils/bitsetUtils.hh:72: error: 'const class std::bitset<64u>' has no member named 'all'
  
  Approved by:	mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20602

Modified:
  head/lang/plexil/Makefile

Modified: head/lang/plexil/Makefile
==============================================================================
--- head/lang/plexil/Makefile	Tue Jun 11 15:54:36 2019	(r503964)
+++ head/lang/plexil/Makefile	Tue Jun 11 15:55:37 2019	(r503965)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/../LICENSE
 USES=		gmake libtool
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-static --disable-gantt --disable-ipc --disable-sas --disable-test-exec --disable-udp
-USE_GCC=	any # clang fails: undefined symbol: std::__1::unique_ptr
+USE_GCC=	yes # clang fails: undefined symbol: std::__1::unique_ptr
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 



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