@ -21,4 +21,94 @@ here the `<output-name>` is the name that you want for your executable code.
Now it is possible to execute your new code by using:
```bash
$ ./<output-name>
$ Hello World from BeagleBoard!!
$ Hello World from BeagleBoard!!
```
## The Chain process
In some cases you will need to get access to the intermediate files that are produced by your code during the compilation process. Thus, following the next steps you can obtain the processed, assambled and output files.
then, by using the `less` command you visualize the file's content
```bash
# 1 "hello-world.cpp"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "/usr/include/stdc-predef.h" 1 3 4
# 1 "<command-line>" 2
# 1 "hello-world.cpp"
# 1 "/usr/include/c++/8/iostream" 1 3
# 36 "/usr/include/c++/8/iostream" 3
```
by pressing the `SPC` key you will continue to the next lines, and by pressing the `q` key you will quit and close the file exploration through `less` command.