svn commit: r522177 - head/cad/cascade-compiler

Mark Linimon linimon at FreeBSD.org
Mon Jan 6 01:06:43 UTC 2020


Author: linimon
Date: Mon Jan  6 01:06:42 2020
New Revision: 522177
URL: https://svnweb.freebsd.org/changeset/ports/522177

Log:
  Fix build on GCC-based systems:
  
    CMake Error in src/CMakeLists.txt:
    Target "libcascade" requires the language dialect "CXX17" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/cad/cascade-compiler/Makefile

Modified: head/cad/cascade-compiler/Makefile
==============================================================================
--- head/cad/cascade-compiler/Makefile	Mon Jan  6 00:23:18 2020	(r522176)
+++ head/cad/cascade-compiler/Makefile	Mon Jan  6 01:06:42 2020	(r522177)
@@ -19,7 +19,7 @@ RUN_DEPENDS=	verilator:cad/verilator
 TEST_DEPENDS=	benchmark>0:devel/benchmark \
 		googletest>0:devel/googletest
 
-USES=		bison cmake localbase:ldflags ncurses perl5
+USES=		bison cmake compiler:c++17-lang localbase:ldflags ncurses perl5
 USE_GITHUB=	yes
 GH_ACCOUNT=	vmware
 GH_TAGNAME=	09fb6020329fc1d6d49b32ce3bbef241c52059f9


More information about the svn-ports-all mailing list