From: 오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Wed, 11 Jul 2018 23:49:02 +0000 (+0900) Subject: Build ACL in svace build (#1947) X-Git-Tag: 0.2~459 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b75a5a12c1d8da4eba4d24f7db544cfd4c12959;p=platform%2Fcore%2Fml%2Fnnfw.git Build ACL in svace build (#1947) Build ACL instead of using external ACL in svace build Signed-off-by: Hyeongseok Oh --- diff --git a/scripts/command/docker_build_ubuntu_svace.sh b/scripts/command/docker_build_ubuntu_svace.sh index 1c35de8..e1883ca 100755 --- a/scripts/command/docker_build_ubuntu_svace.sh +++ b/scripts/command/docker_build_ubuntu_svace.sh @@ -32,12 +32,6 @@ fi pushd $HOST_HOME -# prepare armcl library -if [[ ! -d $ARMCL_DIR ]]; then - echo "cannot find armcl" - exit 1 -fi - # prepare rootfs if [[ ! -d $ROOTFS_DIR ]]; then echo "cannot find rootfs" @@ -52,7 +46,6 @@ fi DOCKER_VOLUMES+=" -v $SVACE_ANALYZER_DIR:/opt/svace-analyzer" DOCKER_VOLUMES+=" -v $ROOTFS_DIR:/opt/rootfs" -DOCKER_VOLUMES+=" -v $ARMCL_DIR:/opt/libarmcl" # Change .gitmodules to work around the permission issue CMD_SUBMODULE="./scripts/command/change_gitmodule.sh" @@ -62,7 +55,7 @@ if [ -n "$DOCKER_INTERACTIVE" ]; then DOCKER_RUN_OPTS+=" -it" CMD="/bin/bash" else - CMD="make external_acl tflite && /opt/svace-analyzer/bin/svace init && /opt/svace-analyzer/bin/svace build make runtime testbuild" + CMD="make acl tflite && /opt/svace-analyzer/bin/svace init && /opt/svace-analyzer/bin/svace build make runtime testbuild" fi docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME sh -c "$CMD"