summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual/working-projects.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/sdk-manual/working-projects.rst')
-rw-r--r--documentation/sdk-manual/working-projects.rst15
1 files changed, 5 insertions, 10 deletions
diff --git a/documentation/sdk-manual/working-projects.rst b/documentation/sdk-manual/working-projects.rst
index 0eddee08e3..beec1dd09a 100644
--- a/documentation/sdk-manual/working-projects.rst
+++ b/documentation/sdk-manual/working-projects.rst
@@ -33,8 +33,7 @@ project:
33 33
341. *Create a Working Directory and Populate It:* Create a clean 341. *Create a Working Directory and Populate It:* Create a clean
35 directory for your project and then make that directory your working 35 directory for your project and then make that directory your working
36 location. 36 location::
37 ::
38 37
39 $ mkdir $HOME/helloworld 38 $ mkdir $HOME/helloworld
40 $ cd $HOME/helloworld 39 $ cd $HOME/helloworld
@@ -146,8 +145,7 @@ project:
146 This next command is a simple way to verify the installation of your 145 This next command is a simple way to verify the installation of your
147 project. Running the command prints the architecture on which the 146 project. Running the command prints the architecture on which the
148 binary file can run. This architecture should be the same 147 binary file can run. This architecture should be the same
149 architecture that the installed cross-toolchain supports. 148 architecture that the installed cross-toolchain supports::
150 ::
151 149
152 $ file ./tmp/usr/local/bin/hello 150 $ file ./tmp/usr/local/bin/hello
153 151
@@ -210,8 +208,7 @@ demonstrates these variable behaviors.
210In a new shell environment variables are not established for the SDK 208In a new shell environment variables are not established for the SDK
211until you run the setup script. For example, the following commands show 209until you run the setup script. For example, the following commands show
212a null value for the compiler variable (i.e. 210a null value for the compiler variable (i.e.
213:term:`CC`). 211:term:`CC`)::
214::
215 212
216 $ echo ${CC} 213 $ echo ${CC}
217 214
@@ -232,8 +229,7 @@ example:
232 229
2331. *Create a Working Directory and Populate It:* Create a clean 2301. *Create a Working Directory and Populate It:* Create a clean
234 directory for your project and then make that directory your working 231 directory for your project and then make that directory your working
235 location. 232 location::
236 ::
237 233
238 $ mkdir $HOME/helloworld 234 $ mkdir $HOME/helloworld
239 $ cd $HOME/helloworld 235 $ cd $HOME/helloworld
@@ -322,8 +318,7 @@ example:
322 318
323 You can override the :term:`CC` environment variable with the same 319 You can override the :term:`CC` environment variable with the same
324 variable as set from the Makefile by uncommenting the line in the 320 variable as set from the Makefile by uncommenting the line in the
325 Makefile and running ``make`` again. 321 Makefile and running ``make`` again::
326 ::
327 322
328 $ make clean 323 $ make clean
329 rm -rf *.o 324 rm -rf *.o