Lecture 2 - Compiling, Object Files, Linking, and Execution Flashcards

1
Q

Background on C/Why C?

A
  • the linux kernel is written in C
  • it is fast
  • it is powerful
  • it is simple (easy to do low level things)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

process C goes through to be executed

A
  • start with code
  • gets compiled
  • equivalent program is made in machine language
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

compiling for this class/our C standard

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

gcc

A

-GNU compiler collection
- standard compiler for most UNIX-like systems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

gcc flag -c

A
  • compile file and produce an object file
  • however, the object file is not an executable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

gcc flag -g

A

include debug symbols

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

gcc flag -Wall

A
  • enable ALL warnings
  • doesn’t flag them as errors on its own
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

gcc flag -Werror

A

turn warnings into errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

gcc flag -O

A
  • used for optimization during compilation
  • tells compiler to optimize the generated machine code for better performance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

gcc flag -o file

A
  • outputs to ‘file’
  • specifies the output file name for the compiled program
  • now you can run the program with that file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

gcc flag -ansi

A

adhere to the ANSI standard

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

gcc flag -std=X

A

adhere to some C standard X

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is an object file?

A
  • is an intermediate machine readable file made by a compiler when compiling a source code file
  • to create an executable from multiple object files, we need to link them together
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

example of linking two files

A
  • compile two C files and link them together
    gcc -Wall -Werror -g -c file1.c
    gcc -Wall -Werror -g -c file1.c
    gcc -o my_progr file1.o file2.o
  • do it all in the same line (but doesn’t make .o files)
    gcc -Wall -Werror -g file1.c file2.c -o file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

why object files?

A
  • it takes a long time to compile “big” application if they have lots of C files
  • its’s better to do incremental compilation of the application
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

executing a program

A
  • if there’s no errors compiling/linking the program invoke it with
    gcc -Wall -Werror -c hello.c
    gcc -o hello hello.o
    ./hello
  • the .c compiles hello.c into a OBJECT file hello.o
17
Q

common errors with functions

A

when putting functions into separate files, they need to have forward declarations for functions
- ex. float calc(float first, float sec); in one file and the function in the other

18
Q

types of optimization -O to pass through

A
  • no optimization: -O0
  • basic optimization: -O1
  • moderate optimization: -O2
  • max optimizaiton: -O3