svn commit: r541266 - head/math/clasp

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jul 5 09:24:54 UTC 2020


Author: pkubaj
Date: Sun Jul  5 09:24:54 2020
New Revision: 541266
URL: https://svnweb.freebsd.org/changeset/ports/541266

Log:
  math/clasp: fix build on GCC architectures
  
  Use C++11 compiler:
  CMake Error in app/CMakeLists.txt:
    Target "clasp" requires the language dialect "CXX11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/math/clasp/Makefile

Modified: head/math/clasp/Makefile
==============================================================================
--- head/math/clasp/Makefile	Sun Jul  5 09:14:03 2020	(r541265)
+++ head/math/clasp/Makefile	Sun Jul  5 09:24:54 2020	(r541266)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BROKEN_sparc64=	Fails to build: internal compiler error
 
-USES=	cmake
+USES=	compiler:c++11-lang cmake
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	potassco


More information about the svn-ports-all mailing list