Skip to content

Commit c933398

Browse files
zelenskiCS107E Bot
authored and
CS107E Bot
committed
Updated gdb guide, added info on difference between simulator and real thing re: memory
commit d52067c03fb047c316c7dc46272776e15dfdddf3 Author: Julie Zelenski <[email protected]> Date: Sat Jan 26 23:05:16 2019 -0800 Updated gdb guide, added info on difference between simulator and real thing re: memory
1 parent 0e0b439 commit c933398

13 files changed

+249
-410
lines changed

_config.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ kramdown:
55
permalink: pretty
66
exclude:
77
- /cs107e/
8+
- /firmware/
9+
- /hardware/
10+
- /stickers/
811
include:
912
- _assets
1013
defaults:
@@ -16,4 +19,6 @@ defaults:
1619
layout: "default"
1720
plugins:
1821
- jekyll-sitemap
19-
22+
error_mode: warn
23+
strict_variables: true
24+
strict_filters: true

_includes/navbar.html

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<li><a href="/policies/">Policies</a></li>
2929
<li><a href="/schedule/">Schedule</a></li>
3030
<li><a href="/guides/">Guides</a></li>
31+
<li><a href="/demos/">External demos</a></li>
3132
<li><a href="/resources/">External resources</a></li>
3233
</ul>
3334
</li>

guides/binutils.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ and links them together is `ld`, described below.
4848

4949
The most common use of `as` is as follows:
5050

51-
% as code.s -o code.o
51+
$ as code.s -o code.o
5252

5353
This tells the assembler that `code.s` is its input of assembly code, and to output object
5454
code to `code.o`. If you do not include `-o code.o` then it will default to outputting to
5555
`a.out`. If you do not include `code.s` it will default to taking its input from standard
5656
input. These two invocations are therefore equivalent:
5757

58-
% cat code.s | as
59-
% as code.s -o a.out
58+
$ cat code.s | as
59+
$ as code.s -o a.out
6060

6161
### `ld`
6262

@@ -81,28 +81,28 @@ where `f` exists.
8181

8282
The basic use for `ld` is as follows:
8383

84-
% ld code1.o code1.o -o code.bin
84+
$ ld code1.o code1.o -o code.bin
8585

8686
This takes two object files, links them together, and outputs the result as `code.bin`.
8787

8888
When you invoke GCC without the `-c` option, it typically runs `ld` as its last step. For
8989
example,
9090

91-
% gcc -o test test.c
91+
$ gcc -o test test.c
9292

9393
is mostly equivalent (I'm leaving out a lot of options that are added by default) to:
9494

95-
% gcc -S test.S test.c # Generate assembly
96-
% as -o test.o test.S # Generate object file
97-
% ld -o test test.o
95+
$ gcc -S test.S test.c # Generate assembly
96+
$ as -o test.o test.S # Generate object file
97+
$ ld -o test test.o
9898

9999
The most commonly used options for `ld` are `-l` and `-L`. The `-l` option tells `ld`
100100
to link a library, which is basically just an object file. But libraries are typically
101101
stable code that you don't update often and are used by many programs, so they live
102102
in separate directories for that purpose (e.g, `/usr/lib`). The `-L` option tells `ld`
103103
what directories to look for libraries in. So, for example,
104104

105-
% ld -o test test.o -lgcc -L/usr/lib
105+
$ ld -o test test.o -lgcc -L/usr/lib
106106

107107
tells `ld` to link a file name `libgcc.a` (or `libgcc.so`, but we will not be using
108108
shared objects in this class, so don't worry about them) which it should search for
@@ -144,14 +144,14 @@ second column states what kind of symbol it is. The types are:
144144

145145
So in the above example, the object file defines a function `f`, a function `main`, and a variable `a`.
146146
The other symbols (generally, symbols that start with `_`) are generated by the compiler for
147-
bookeeping and linking.
147+
bookkeeping and linking.
148148

149149
### `size`
150150

151151
Lists the size of sections (and total size) of object files. Can be invoked on multiple
152152
files at once simply by listing the desired files,
153153

154-
% size test.o test2.o
154+
$ size test.o test2.o
155155

156156
which produces output like this:
157157

@@ -170,7 +170,7 @@ the section sizes in hexadecimal, use the `-x` option (`size -x test.o`). You ca
170170
file type if it is not automatically recognized. For example if you want to know the size of a raw
171171
binary file, you could use
172172

173-
% size --target=binary test.bin
173+
$ size --target=binary test.bin
174174

175175
### `strings`
176176

@@ -179,13 +179,13 @@ for searching binary files, which are not readable using a text editor. For exam
179179
wanted to search an object file for a particular string, you could call strings and pipe the result to
180180
grep, like this:
181181

182-
% strings test.o | grep "my string"
182+
$ strings test.o | grep "my string"
183183

184184
By default, `strings` looks for strings of at least 4
185185
printable characters (followed by a NUL character indicating the end of a string).
186186
To set a minimum string length other than 4, use the `-n` option. For example,
187187

188-
% strings -n 6 test.o
188+
$ strings -n 6 test.o
189189

190190
looks for strings of at least 6 characters.
191191

@@ -206,11 +206,11 @@ options to `objcopy` are `-O` and `-I`, which specify the output and input forma
206206
elf32-bigarm, ihex, and binary. Sometimes `objcopy` can tell what the format is and so doesn't need to be
207207
told explicitly (e.g., ELF). In its most basic use, `objcopy` just makes a copy of the file. For example,
208208

209-
% objcopy main main2
209+
$ objcopy main main2
210210

211211
creates a simple of main in main2. In contrast,
212212

213-
% objcopy main -O binary main.bin
213+
$ objcopy main -O binary main.bin
214214

215215
takes main as input (an ELF file), transforms it into a raw binary file and outputs that raw binary as main.bin.
216216

@@ -221,9 +221,9 @@ options, which indicate what type of information you would like to view. There a
221221
check out `man objdump` to see what it can show.
222222

223223
A very useful option is the `-d` option, which allows you to view the assembly instructions
224-
associated with the executable part of the binary file (`-d` is for dissassemble):
224+
associated with the executable part of the binary file (`-d` is for disassemble):
225225

226-
% objdump -d test.o
226+
$ objdump -d test.o
227227

228228
### `ar`
229229

@@ -243,7 +243,7 @@ functions.
243243

244244
For example,
245245

246-
% ar cr libtest.a test.o test2.o
246+
$ ar cr libtest.a test.o test2.o
247247

248248
makes the library archive file libtest.a containing test.o and test2.o. Then you can link to this
249249
library by specifying `-ltest` in the `ld` command (see `ld` above).

guides/ci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ solution.
3232

3333
You can also click the icon next to a commit to see the results of a Travis
3434
build. This icon will show a red "x" for a build failure, a yellow circle for a
35-
build in progress, and a green checkmark for a succesful build.
35+
build in progress, and a green checkmark for a successful build.
3636
<img title="Pull request page." src="/guides/images/travis-github-commit-icon.png" width="800">
3737

3838
The build page shows the result of testing one particular commit you pushed.

0 commit comments

Comments
 (0)