[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Tinycc-devel] PE log file per file
From: |
Timo VJ Lähde |
Subject: |
[Tinycc-devel] PE log file per file |
Date: |
Wed, 21 Apr 2010 09:52:11 +0300 |
I prefer PE log file per file:
--- 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
- [Tinycc-devel] PE log file per file,
Timo VJ Lähde <=