make the filename output high verbosity

This commit is contained in:
Bill Currie 2002-07-17 19:00:16 +00:00
parent e72b25144e
commit fb4ef47af6
2 changed files with 4 additions and 2 deletions

View file

@ -541,7 +541,8 @@ linker_add_object_file (const char *filename)
if (!qfo)
return;
puts(filename);
if (options.verbosity >= 2)
puts (filename);
code_base = code->size;
data_base = data->size;

View file

@ -530,6 +530,7 @@ separate_compile (void)
if (strncmp (*file, "-l", 2)
&& (!strcmp (extension->str, ".r")
|| !strcmp (extension->str, ".qc"))) {
if (options.verbosity >= 2)
printf ("%s %s\n", *file, output_file->str);
err = compile_to_obj (*file, output_file->str) || err;