make acl on pureacl arm cross build script (#1514)
author이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Fri, 1 Jun 2018 07:47:30 +0000 (16:47 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 1 Jun 2018 07:47:30 +0000 (16:47 +0900)
BUILD_ACL does not support embeded kernel. To avoid cl_kernels installation on
test job, this commit disables BUILD_ACL and do `make acl` on arm cross build script.

Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com>
scripts/command/docker_build_cross_arm_pureacl.sh

index 7284144..5d44f5a 100755 (executable)
@@ -32,7 +32,7 @@ if [ -n "$DOCKER_INTERACTIVE" ]; then
   DOCKER_RUN_OPTS+=" -it"
   CMD="/bin/bash"
 else
-  CMD="export OPTIONS=\"-DBUILD_ACL=ON -DBUILD_PURE_ARM_COMPUTE=ON\" && make && make install && make build_test_suite"
+  CMD="export OPTIONS=\" -DBUILD_PURE_ARM_COMPUTE=ON \" && make acl && make && make install && make build_test_suite"
 fi
 
 docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME sh -c "$CMD"