Remove unnecessary if for BUILD_ARMCOMPUTE (#4703)
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 13 Mar 2019 05:37:21 +0000 (14:37 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Wed, 13 Mar 2019 05:37:21 +0000 (14:37 +0900)
Now, the default value of BUILD_ARMCOMPUTE for x86_64 is OFF.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
cmake/CfgOptionFlags.cmake

index fba043a..5821dca 100644 (file)
@@ -25,8 +25,3 @@ option(BUILD_LABS "Build lab projects" OFF)
 option(BUILD_TFLITE_TEST "Build tensorflow lite test" OFF)
 option(BUILD_TFLITE_CLASSIFY_APP "Build tflite_classify app" OFF)
 option(BUILD_UBEN "Build micro-benchmark (uben) suite" OFF)
-
-# On x86, disable pureacl build which depends on arm compute library
-if("${TARGET_ARCH}" STREQUAL "x86_64")
-  set(BUILD_PURE_ARM_COMPUTE OFF)
-endif()