C/C++: source file after preprocessing-Diab compiler? -
source.c --(preprocessing)--> temp_source.c --(compiling)--> source.elf --(linking)--> source.exe
how view temp_source.c ?
(i assume file name temp_source.c)
edit: i'm using diab compiler.
command line interface microsoft visual c++ can used output preprocessed file :
/e: preprocess stdout (similar gcc's -e option) /p: preprocess file /ep: preprocess stdout without #line directives
Comments
Post a Comment