diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-18 11:13:22 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-18 11:13:22 +0100 |
commit | 5a700f84793f824ff98323e6c3381ce83379bdc1 (patch) | |
tree | e5b6102ee15d60caec46443360188dc435af9988 /docs/part-1/4-2_build-first-app-cmd.md | |
parent | 92f9fb1ebda0eb607c5ae5189034b4503e81666e (diff) |
Used section-note / warning keywords to fix rendering on AGL site
Change-Id: I132973ba626d596997efaeeeb264e1586c1d6437
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'docs/part-1/4-2_build-first-app-cmd.md')
-rw-r--r-- | docs/part-1/4-2_build-first-app-cmd.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/part-1/4-2_build-first-app-cmd.md b/docs/part-1/4-2_build-first-app-cmd.md index 02de723..fbfdc41 100644 --- a/docs/part-1/4-2_build-first-app-cmd.md +++ b/docs/part-1/4-2_build-first-app-cmd.md @@ -35,14 +35,14 @@ If it is not the case, just add it manually using `export PATH=${PATH}:/opt/AGL/ Now to refer your project, just use --id option or use `XDS_PROJECT_ID` environment variable. -<!-- note --> +<!-- section-note --> **Note:** Short id notation is also supported as soon as given id value is non ambiguous. For example, to refer to Project_helloworld-native-application project listed in above command, you can simply use --id 40 instead of --id 4021617e-ced0-11e7-acd2-3c970e49ad9b -<!-- endnote --> +<!-- end-section-note --> You also need to determine the ID of the cross SDK you want to use to cross build you application. @@ -74,10 +74,10 @@ xds-cli exec --id=4021617e --sdkid=c226821b -- "cd build && cmake .." xds-cli exec --id=4021617e --sdkid=c226821b -- "cd build && make all" ``` -<!-- note --> +<!-- section-note --> **Note:** If you use `&&`, `||` or `;` statement in the executed command line, you need to double quote the command, for example `"cd build && make`. -<!-- endnote --> +<!-- end-section-note --> To avoid to set project id, sdks id, url, ... for each command line, you can define these settings as environment variables within an env file and just set @@ -111,7 +111,7 @@ xds-cli exec "mkdir -p build && cd build && cmake .." cd build && xds-cli exec "make all" ``` -<!-- note --> +<!-- section-note --> **Note:** all parameters after a double dash (--) are considered as the command to execute. -<!-- endnote --> +<!-- end-section-note --> |