mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40: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,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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue