Output library information to the debug file.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5127 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-07 11:33:28 +00:00
parent b418fdf985
commit af3a5e6e15
6 changed files with 110 additions and 23 deletions

View File

@@ -43,6 +43,7 @@
#include "error.h"
#include "fileinfo.h"
#include "global.h"
#include "library.h"
#include "lineinfo.h"
#include "scopes.h"
#include "segments.h"
@@ -104,7 +105,10 @@ void CreateDbgFile (void)
/* Assign the base ids to the modules */
AssignBaseIds ();
/* Output modules */
/* Output libraries */
PrintDbgLibraries (F);
/* Output modules */
for (I = 0; I < CollCount (&ObjDataList); ++I) {
/* Get this object file */
@@ -121,11 +125,8 @@ void CreateDbgFile (void)
Source->Id);
/* Add library if any */
if (O->LibName != INVALID_STRING_ID) {
fprintf (F,
",lib=\"%s\",mtime=0x%08lX",
GetString (O->LibName),
O->MTime);
if (O->Lib != 0) {
fprintf (F, ",lib=%u", GetLibId (O->Lib));
}
/* Terminate the output line */