diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-16 02:06:53 +0000 |
|---|---|---|
| committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-16 02:06:53 +0000 |
| commit | 85907018bf7c2287aa70f9f38d0f208b6d6c2395 (patch) | |
| tree | b0a68ec0604249c1d5aef3fc112a51a64080a553 /math/cppad | |
| parent | 6da12d01e01545478a85accafb2bbb8be49155a0 (diff) | |
math/cppad: fix build on GCC architectures
The c++ complier flag __cplusplus is less than 201103. Starting with
cppad-20201202, c++11 or higher is required.
MFH: 2021Q1
Diffstat (limited to 'math/cppad')
| -rw-r--r-- | math/cppad/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/cppad/Makefile b/math/cppad/Makefile index 8f4150595840..944dd86cf1cc 100644 --- a/math/cppad/Makefile +++ b/math/cppad/Makefile @@ -10,7 +10,7 @@ COMMENT= C++ Algorithmic Differentiation package LICENSE= EPL -USES= cmake eigen:3,run +USES= cmake compiler:c++11-lang eigen:3,run USE_GITHUB= yes GH_ACCOUNT= coin-or GH_PROJECT= CppAD |
