From 82c5fd1d7de1ed353b5893f70d8dc728a6b8cf94 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Sat, 30 Nov 2019 02:06:15 +0000 Subject: [PATCH] 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) --- misc/tvm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tvm/Makefile b/misc/tvm/Makefile index cf8df1889ceb..1482082f1a9c 100644 --- a/misc/tvm/Makefile +++ b/misc/tvm/Makefile @@ -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