svn commit: r541267 - branches/2020Q3/math/clasp

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jul 5 09:25:55 UTC 2020


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

Log:
  MFH: r541266
  
  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.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/math/clasp/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/math/clasp/Makefile
==============================================================================
--- branches/2020Q3/math/clasp/Makefile	Sun Jul  5 09:24:54 2020	(r541266)
+++ branches/2020Q3/math/clasp/Makefile	Sun Jul  5 09:25:54 2020	(r541267)
@@ -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