Lecture 2 - Compiling, Object Files, Linking, and Execution Flashcards
Background on C/Why C?
- the linux kernel is written in C
- it is fast
- it is powerful
- it is simple (easy to do low level things)
process C goes through to be executed
- start with code
- gets compiled
- equivalent program is made in machine language
compiling for this class/our C standard
gcc
-GNU compiler collection
- standard compiler for most UNIX-like systems
gcc flag -c
- compile file and produce an object file
- however, the object file is not an executable
gcc flag -g
include debug symbols
gcc flag -Wall
- enable ALL warnings
- doesn’t flag them as errors on its own
gcc flag -Werror
turn warnings into errors
gcc flag -O
- used for optimization during compilation
- tells compiler to optimize the generated machine code for better performance
gcc flag -o file
- outputs to ‘file’
- specifies the output file name for the compiled program
- now you can run the program with that file
gcc flag -ansi
adhere to the ANSI standard
gcc flag -std=X
adhere to some C standard X
what is an object file?
- 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
example of linking two files
- 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
why object files?
- 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
executing a program
- 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
common errors with functions
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
types of optimization -O to pass through
- no optimization: -O0
- basic optimization: -O1
- moderate optimization: -O2
- max optimizaiton: -O3