Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Apr 2020 14:28:06 +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: r531520 - head/math/ascent
Message-ID:  <202004121428.03CES6qC013101@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Apr 12 14:28:06 2020
New Revision: 531520
URL: https://svnweb.freebsd.org/changeset/ports/531520

Log:
  math/ascent: fix build on GCC architectures
  
  C++17 compiler is necessary:
    The compiler feature "cxx_std_17" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.

Modified:
  head/math/ascent/Makefile

Modified: head/math/ascent/Makefile
==============================================================================
--- head/math/ascent/Makefile	Sun Apr 12 13:40:24 2020	(r531519)
+++ head/math/ascent/Makefile	Sun Apr 12 14:28:06 2020	(r531520)
@@ -11,7 +11,7 @@ COMMENT=	C++ simulation engine and differential equati
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		cmake compiler:c++17-lang
 USE_GITHUB=	yes
 GH_ACCOUNT=	AnyarInc
 GH_PROJECT=	Ascent



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