mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 20:50:42 +00:00
make the filename output high verbosity
This commit is contained in:
parent
e72b25144e
commit
fb4ef47af6
2 changed files with 4 additions and 2 deletions
|
@ -541,6 +541,7 @@ linker_add_object_file (const char *filename)
|
||||||
if (!qfo)
|
if (!qfo)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (options.verbosity >= 2)
|
||||||
puts (filename);
|
puts (filename);
|
||||||
|
|
||||||
code_base = code->size;
|
code_base = code->size;
|
||||||
|
|
|
@ -530,6 +530,7 @@ separate_compile (void)
|
||||||
if (strncmp (*file, "-l", 2)
|
if (strncmp (*file, "-l", 2)
|
||||||
&& (!strcmp (extension->str, ".r")
|
&& (!strcmp (extension->str, ".r")
|
||||||
|| !strcmp (extension->str, ".qc"))) {
|
|| !strcmp (extension->str, ".qc"))) {
|
||||||
|
if (options.verbosity >= 2)
|
||||||
printf ("%s %s\n", *file, output_file->str);
|
printf ("%s %s\n", *file, output_file->str);
|
||||||
err = compile_to_obj (*file, output_file->str) || err;
|
err = compile_to_obj (*file, output_file->str) || err;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue