From: 이상규/동작제어Lab(SR)/Principal Engineer/삼성전자 Date: Mon, 1 Oct 2018 06:20:44 +0000 (+0900) Subject: Update ACL cross build guide (#2804) X-Git-Tag: 0.3~752 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9808feea8c178b39ff1237143ab76766e410dbfe;p=platform%2Fcore%2Fml%2Fnnfw.git Update ACL cross build guide (#2804) Related Issue: #2795, #2783 ACL build requires `CROSS_BUILD=1`. Signed-off-by: Sanggyu Lee --- diff --git a/docs/howto/CrossBuildForAarch64.md b/docs/howto/CrossBuildForAarch64.md index e400a95..f3dc552 100644 --- a/docs/howto/CrossBuildForAarch64.md +++ b/docs/howto/CrossBuildForAarch64.md @@ -60,7 +60,7 @@ sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu Build and install ARM Compute Library ``` -TARGET_ARCH=aarch64 make acl +CROSS_BUILD=1 TARGET_ARCH=aarch64 make acl ``` Mostly you only need once of ACL build. This will build and install to `Product/(target_arch-os)/out/bin` folder. diff --git a/docs/howto/CrossBuildForArm.md b/docs/howto/CrossBuildForArm.md index 38e544b..ebba7ec 100644 --- a/docs/howto/CrossBuildForArm.md +++ b/docs/howto/CrossBuildForArm.md @@ -79,7 +79,7 @@ Then, copy `libstdc++.so.6.0.24` into `/usr/lib/arm-linux-gnueabihf`, and update ## Build and install ARM Compute Library ``` -TARGET_ARCH=armv7l make acl +CROSS_BUILD=1 TARGET_ARCH=armv7l make acl ``` Mostly you only need once of ACL build. This will build and install to `Product/(target_arch-os)/out/bin` folder. - this is required for ARM on Ubuntu