diff options
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 --> |