diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-09 08:32:14 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-09 08:32:14 +0000 |
commit | 507ecdc172c0d10fdfc7ba3c624987a025eddcc2 (patch) | |
tree | 5299563f2dd5e991a16fc5245b82eb11d089e6e1 /math/py-symcxx | |
parent | www/chromium: Add support for audio recording using sndio (diff) |
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)
Notes
Notes:
svn path=/head/; revision=506267
Diffstat (limited to 'math/py-symcxx')
-rw-r--r-- | math/py-symcxx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/py-symcxx/Makefile b/math/py-symcxx/Makefile index a963530ff94c..366f79f23c74 100644 --- a/math/py-symcxx/Makefile +++ b/math/py-symcxx/Makefile @@ -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: |