|
From: | grischka |
Subject: | Re: [Tinycc-devel] PE log file per file |
Date: | Wed, 21 Apr 2010 10:04:17 +0200 |
User-agent: | Thunderbird 2.0.0.23 (Windows/20090812) |
Timo VJ Lähde wrote:
I prefer PE log file per file:
Sure. (Of course we expect your work on the "mob" branch at some point, but it's nice that you keep us informed what you're doing.) --- grischka
--- a\tccpe.c Mon Apr 19 15:34:58 2010 +++ b\tccpe.c Wed Apr 21 09:18:53 2010 @@ -1882,7 +1886,10 @@ } #ifdef PE_PRINT_SECTIONS - pe_print_sections(s1, "tcc.log"); + char logfile[260]; + strcpy(logfile, filename); + strcat(logfile, ".log"); + pe_print_sections(s1, logfile); #endif return ret; } --Timppa
[Prev in Thread] | Current Thread | [Next in Thread] |