Extend the map file to include a table of exports sorted by value.

This commit is contained in:
Christian Groessler
2014-03-20 02:01:21 +01:00
parent 82f47cea4a
commit d72e62cae2
3 changed files with 72 additions and 8 deletions

View File

@@ -186,8 +186,11 @@ void CheckUnresolvedImports (ExpCheckFunc F, void* Data);
* called (see the comments on ExpCheckFunc in the data section).
*/
void PrintExportMap (FILE* F);
/* Print an export map to the given file */
void PrintExportMapByName (FILE* F);
/* Print an export map to the given file (sorted by symbol name) */
void PrintExportMapByValue (FILE* F);
/* Print an export map to the given file (sorted by export value) */
void PrintImportMap (FILE* F);
/* Print an import map to the given file */