print cpp invocation for win32 too

This commit is contained in:
Bill Currie 2002-08-02 19:09:02 +00:00
parent 96f81b69b8
commit 8de4d28238

View file

@ -201,7 +201,16 @@ preprocess_file (const char *filename)
}
{
int status = spawnvp (_P_WAIT, cpp_argv[0], (char **)cpp_argv);
int status;
if (options.verbosity > 1) {
const char **a;
for (a = cpp_argv; *a; a++)
printf ("%s ", *a);
puts("");
}
status = spawnvp (_P_WAIT, cpp_argv[0], (char **)cpp_argv);
if (status) {
fprintf (stderr, "%s: cpp returned error code %d\n",