From 599410c0344396be9e844280eadad12c5f897e4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=B6=98=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Mon, 9 Jul 2018 14:45:11 +0900 Subject: [PATCH] Disable pureacl/new runtine build which depends on arm compute library (#1909) On x64, disable pureacl/new runtine build which depends on arm compute library Signed-off-by: Chunseok Lee --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ec3b5b..f3d863b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,6 +105,12 @@ if("${TARGET_ARCH}" STREQUAL "armv7l" AND NOT "${TARGET_OS}" STREQUAL "tizen") set(BUILD_PURE_ARM_COMPUTE ON) endif() +# On x86, disable pureacl/new runtine build which depends on arm compute library +if("${TARGET_ARCH}" STREQUAL "x86_64") + set(BUILD_PURE_ARM_COMPUTE OFF) + set(BUILD_NEW_RUNTIME OFF) +endif() + # # Common variables # -- 2.7.4