Does anyone know what the command line option is to generated a preprocessed file using bcc32.exe (version 5.6.4)? I know that using gcc you can use -E to generate .i files.
+1
A:
Do not use bcc32.exe but cpp32.exe.
See here for more information on its commandline options or use "cpp32.exe -?".
Kosi2801
2009-06-18 15:04:03
Thanks. This is exactly what I needed.
BlueDot
2009-06-18 17:06:30
BTW, the option is -P. So:> cpp32.exe -P main.cpp
Matthew Lowe
2010-01-11 20:20:13