Date: Sat, 30 Nov 2019 02:06:16 +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: r518691 - head/misc/tvm Message-ID: <201911300206.xAU26GDF013020@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Sat Nov 30 02:06:15 2019 New Revision: 518691 URL: https://svnweb.freebsd.org/changeset/ports/518691 Log: misc/tvm: fix build on GCC architectures Use C++11 compiler: cc1plus: error: unrecognized command line option "-std=c++11" Approved by: mentors (implicit approval) Modified: head/misc/tvm/Makefile Modified: head/misc/tvm/Makefile ============================================================================== --- head/misc/tvm/Makefile Sat Nov 30 02:02:29 2019 (r518690) +++ head/misc/tvm/Makefile Sat Nov 30 02:06:15 2019 (r518691) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= dmlc-core>0:devel/dmlc-core \ rang>0:devel/rang -USES= cmake localbase +USES= cmake compiler:c++11-lang localbase USE_GITHUB= yes GH_ACCOUNT= apache GH_PROJECT= incubator-tvm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911300206.xAU26GDF013020>