svn commit: r506267 - head/math/py-symcxx

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jul 9 08:32:15 UTC 2019


Author: pkubaj
Date: Tue Jul  9 08:32:14 2019
New Revision: 506267
URL: https://svnweb.freebsd.org/changeset/ports/506267

Log:
  math/py-symcxx: fix build with GCC-based architectures
  
  This port needs C++11-compatible compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/py-symcxx/Makefile

Modified: head/math/py-symcxx/Makefile
==============================================================================
--- head/math/py-symcxx/Makefile	Tue Jul  9 08:20:56 2019	(r506266)
+++ head/math/py-symcxx/Makefile	Tue Jul  9 08:32:14 2019	(r506267)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYNUMPY}
 
-USES=		fortran python:-3.6 # fortran because otherwise "import numpy" fails with wrong libgcc_s.so message
+USES=		compiler:c++11-lang fortran python:-3.6 # fortran because otherwise "import numpy" fails with wrong libgcc_s.so message
 USE_PYTHON=	distutils autoplist
 
 post-patch:


More information about the svn-ports-head mailing list