summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Jackman <brendan.jackman@arm.com>2017-01-26 12:35:42 +0000
committervingu-linaro <vincent.guittot@linaro.org>2017-01-26 14:43:35 +0100
commit111bbbe30c3ed762228b33c3278e9ec4b6c53340 (patch)
treec4a4f2455d4851cf2c6daeb9c4628f582780e5e0
parent27fdcb1f1c33600c0f81b8568f65e383d2dece6e (diff)
doc: Fix ./configure command in tutorial.txtHEADmasterlinaro
With the provided command I get this error from ./configure: checking whether the C compiler works... no configure: error: in `/home/brendan/sources/rt-app': configure: error: C compiler cannot create executables See `config.log' for more details This seems to be because the "libs/" part is bogus.
-rw-r--r--doc/tutorial.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.txt b/doc/tutorial.txt
index b39666d..d2a99c3 100644
--- a/doc/tutorial.txt
+++ b/doc/tutorial.txt
@@ -40,7 +40,7 @@ For rt-app:
export ac_cv_lib_json_c_json_object_from_file=yes
./autogen.sh
-./configure --host=aarch64-linux-gnu LDFLAGS=" --static -L<path to parent of json repo>/json-c/. libs/" CFLAGS="-I<path to parent of json repo>" --with-deadline
+./configure --host=aarch64-linux-gnu LDFLAGS=" --static -L<path to parent of json repo>/json-c/." CFLAGS="-I<path to parent of json repo>" --with-deadline
make
e.g, with a directory structure like the following: