@@ -48,15 +48,15 @@ and links them together is `ld`, described below.
48
48
49
49
The most common use of ` as ` is as follows:
50
50
51
- % as code.s -o code.o
51
+ $ as code.s -o code.o
52
52
53
53
This tells the assembler that ` code.s ` is its input of assembly code, and to output object
54
54
code to ` code.o ` . If you do not include ` -o code.o ` then it will default to outputting to
55
55
` a.out ` . If you do not include ` code.s ` it will default to taking its input from standard
56
56
input. These two invocations are therefore equivalent:
57
57
58
- % cat code.s | as
59
- % as code.s -o a.out
58
+ $ cat code.s | as
59
+ $ as code.s -o a.out
60
60
61
61
### ` ld `
62
62
@@ -81,28 +81,28 @@ where `f` exists.
81
81
82
82
The basic use for ` ld ` is as follows:
83
83
84
- % ld code1.o code1.o -o code.bin
84
+ $ ld code1.o code1.o -o code.bin
85
85
86
86
This takes two object files, links them together, and outputs the result as ` code.bin ` .
87
87
88
88
When you invoke GCC without the ` -c ` option, it typically runs ` ld ` as its last step. For
89
89
example,
90
90
91
- % gcc -o test test.c
91
+ $ gcc -o test test.c
92
92
93
93
is mostly equivalent (I'm leaving out a lot of options that are added by default) to:
94
94
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
98
98
99
99
The most commonly used options for ` ld ` are ` -l ` and ` -L ` . The ` -l ` option tells ` ld `
100
100
to link a library, which is basically just an object file. But libraries are typically
101
101
stable code that you don't update often and are used by many programs, so they live
102
102
in separate directories for that purpose (e.g, ` /usr/lib ` ). The ` -L ` option tells ` ld `
103
103
what directories to look for libraries in. So, for example,
104
104
105
- % ld -o test test.o -lgcc -L/usr/lib
105
+ $ ld -o test test.o -lgcc -L/usr/lib
106
106
107
107
tells ` ld ` to link a file name ` libgcc.a ` (or ` libgcc.so ` , but we will not be using
108
108
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:
144
144
145
145
So in the above example, the object file defines a function ` f ` , a function ` main ` , and a variable ` a ` .
146
146
The other symbols (generally, symbols that start with ` _ ` ) are generated by the compiler for
147
- bookeeping and linking.
147
+ bookkeeping and linking.
148
148
149
149
### ` size `
150
150
151
151
Lists the size of sections (and total size) of object files. Can be invoked on multiple
152
152
files at once simply by listing the desired files,
153
153
154
- % size test.o test2.o
154
+ $ size test.o test2.o
155
155
156
156
which produces output like this:
157
157
@@ -170,7 +170,7 @@ the section sizes in hexadecimal, use the `-x` option (`size -x test.o`). You ca
170
170
file type if it is not automatically recognized. For example if you want to know the size of a raw
171
171
binary file, you could use
172
172
173
- % size --target=binary test.bin
173
+ $ size --target=binary test.bin
174
174
175
175
### ` strings `
176
176
@@ -179,13 +179,13 @@ for searching binary files, which are not readable using a text editor. For exam
179
179
wanted to search an object file for a particular string, you could call strings and pipe the result to
180
180
grep, like this:
181
181
182
- % strings test.o | grep "my string"
182
+ $ strings test.o | grep "my string"
183
183
184
184
By default, ` strings ` looks for strings of at least 4
185
185
printable characters (followed by a NUL character indicating the end of a string).
186
186
To set a minimum string length other than 4, use the ` -n ` option. For example,
187
187
188
- % strings -n 6 test.o
188
+ $ strings -n 6 test.o
189
189
190
190
looks for strings of at least 6 characters.
191
191
@@ -206,11 +206,11 @@ options to `objcopy` are `-O` and `-I`, which specify the output and input forma
206
206
elf32-bigarm, ihex, and binary. Sometimes ` objcopy ` can tell what the format is and so doesn't need to be
207
207
told explicitly (e.g., ELF). In its most basic use, ` objcopy ` just makes a copy of the file. For example,
208
208
209
- % objcopy main main2
209
+ $ objcopy main main2
210
210
211
211
creates a simple of main in main2. In contrast,
212
212
213
- % objcopy main -O binary main.bin
213
+ $ objcopy main -O binary main.bin
214
214
215
215
takes main as input (an ELF file), transforms it into a raw binary file and outputs that raw binary as main.bin.
216
216
@@ -221,9 +221,9 @@ options, which indicate what type of information you would like to view. There a
221
221
check out ` man objdump ` to see what it can show.
222
222
223
223
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 ):
225
225
226
- % objdump -d test.o
226
+ $ objdump -d test.o
227
227
228
228
### ` ar `
229
229
@@ -243,7 +243,7 @@ functions.
243
243
244
244
For example,
245
245
246
- % ar cr libtest.a test.o test2.o
246
+ $ ar cr libtest.a test.o test2.o
247
247
248
248
makes the library archive file libtest.a containing test.o and test2.o. Then you can link to this
249
249
library by specifying ` -ltest ` in the ` ld ` command (see ` ld ` above).
0 commit comments