Date: Tue, 9 Jul 2019 08:32:14 +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: r506267 - head/math/py-symcxx Message-ID: <201907090832.x698WEfF080832@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907090832.x698WEfF080832>