aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2020-06-26 12:35:09 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2020-06-30 19:10:35 +0000
commitf94c674a446d688aa4091e22402b3a7dc9cc5cc5 (patch)
tree0755f250af82f0714726cf3a914f1fe0583965e5
parent737554818bea966fa160c6e88581ee3c941c2f95 (diff)
downloadComputeLibrary-f94c674a446d688aa4091e22402b3a7dc9cc5cc5.tar.gz
COMPMID-3561: Fix in ACL documentation
Missing "-" in front of L (Library path) Change-Id: I1376f3f830ff448535fd54c027fc3dbc864db0f2 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3482 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--docs/00_introduction.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/00_introduction.dox b/docs/00_introduction.dox
index 969bc45379..3668fafbc8 100644
--- a/docs/00_introduction.dox
+++ b/docs/00_introduction.dox
@@ -1340,13 +1340,13 @@ i.e. to natively compile the "graph_lenet" example for Linux 32bit:
i.e. to natively compile the "graph_lenet" example for Linux 64bit:
- g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
+ g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++11 -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
(notice the only difference with the 32 bit command is that we don't need the -mfpu option)
@note If compiling using static libraries, this order must be followed when linking: arm_compute_graph_static, arm_compute, arm_compute_core
-@note These two commands assume libarm_compute.so is available in your library path, if not add the path to it using -L
+@note These two commands assume libarm_compute.so is available in your library path, if not add the path to it using -L (e.g. -Llib/linux-arm64-v8a-neon-cl-asserts/)
@note You might need to export the path to OpenCL library as well in your LD_LIBRARY_PATH if Compute Library was built with OpenCL enabled.
To run the built executable simply run: