Update document (#8803)
author이성재/On-Device Lab(SR)/Principal Engineer/삼성전자 <sj925.lee@samsung.com>
Fri, 8 Nov 2019 01:54:34 +0000 (10:54 +0900)
committer이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 8 Nov 2019 01:54:34 +0000 (10:54 +0900)
- Use copy instead of symbolic link for convenience in modifying the
Makefile
- Fix Build command. Existing last `make install` causes a new x86_64
build.

Signed-off-by: Sung-Jae Lee <sj925.lee@samsung.com>
docs/nnfw/howto/CrossBuildForAndroid.md

index d13c72b..86c2e9d 100644 (file)
@@ -43,12 +43,11 @@ Different from cross build for linux,
 Here is an example of using Makefile.
 
 ```bash
-ln -s Makefile.template Makefile
-
-make TARGET_ARCH=arm64 \
-     CROSS_BUILD=1 \
-     NDK_DIR=/path/android-tools/r20/ndk \
-     EXT_ACL_FOLDER=/path/arm_compute-v19.05-bin-android/lib/android-arm64-v8a-neon-cl
+cp -n Makefile.template Makefile
 
+TARGET_ARCH=arm64 \
+CROSS_BUILD=1 \
+NDK_DIR=/path/android-tools/r20/ndk \
+EXT_ACL_FOLDER=/path/arm_compute-v19.05-bin-android/lib/android-arm64-v8a-neon-cl \
 make install
 ```