user125162
user125162

Reputation:

Generating preprocessed files using bcc32

Does anyone know what the command line option is to generate a preprocessed file using bcc32.exe (version 5.6.4)? I know that using gcc you can use -E to generate .i files.

Upvotes: 1

Views: 1017

Answers (1)

Kosi2801
Kosi2801

Reputation: 23135

Do not use bcc32.exe but cpp32.exe.

See here for more information on its commandline options or use "cpp32.exe -?".

Upvotes: 2

Related Questions