I'm working through a text on linking, and wanted to work along with some examples in said text.
To better understand whats going on when I invoke the gcc
driver, I was looking into doing all the compilation old-school by hand;
- preprocessing using
cpp
- compiling with
cc1
- assembling with
as
- linking using
ld
Unfortunately, on my Mac I don't seem to be able to reference cc1
directly (no listing of cc1
in man
). What are my options?