From 9808feea8c178b39ff1237143ab76766e410dbfe Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=83=81=EA=B7=9C/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Mon, 1 Oct 2018 15:20:44 +0900 Subject: [PATCH] Update ACL cross build guide (#2804) Related Issue: #2795, #2783 ACL build requires `CROSS_BUILD=1`. Signed-off-by: Sanggyu Lee --- docs/howto/CrossBuildForAarch64.md | 2 +- docs/howto/CrossBuildForArm.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4