summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
author이상규/동작제어Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>2018-10-01 15:20:44 +0900
committer박세희/동작제어Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>2018-10-01 15:20:44 +0900
commit9808feea8c178b39ff1237143ab76766e410dbfe (patch)
treee3bbc6762a82843d4877e9239d5fa2a7afcde161 /docs
parentd226124b0e10c4db906732a7e6f365b41def6301 (diff)
downloadnnfw-9808feea8c178b39ff1237143ab76766e410dbfe.tar.gz
nnfw-9808feea8c178b39ff1237143ab76766e410dbfe.tar.bz2
nnfw-9808feea8c178b39ff1237143ab76766e410dbfe.zip
Update ACL cross build guide (#2804)
Related Issue: #2795, #2783 ACL build requires `CROSS_BUILD=1`. Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/CrossBuildForAarch64.md2
-rw-r--r--docs/howto/CrossBuildForArm.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/CrossBuildForAarch64.md b/docs/howto/CrossBuildForAarch64.md
index e400a9597..f3dc55236 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 38e544bb9..ebba7ec86 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