Skip to content

0 Tour

1. Compilation of C Program

Screen Shot 2021-08-09 at 1.43.07 PM

  1. Preprocessor: (text → text) insert system header file (e.g. stdio.h) directly into the program text
  2. cc1: (text → assembly-language)
  3. as: (text → bin)
  4. ld: (bin → executable) merge precompiled object file with our program

Last update: August 9, 2021
Authors: Co1lin