1

What info map file contain generated during compilation of project and how i enable /map option in makefile.

Language : c++

compiler : vc6

sbi
  • 219,715
  • 46
  • 258
  • 445
Satbir
  • 6,358
  • 6
  • 37
  • 52

1 Answers1

3

From Microsoft's documentation for the /MAP linker option:

A mapfile is a text file that contains the following information about the program being linked:

  • The module name, which is the base name of the file
  • The timestamp from the program file header (not from the file system)
  • A list of groups in the program, with each group's start address (as section:offset), length, group name, and class
  • A list of public symbols, with each address (as section:offset), symbol name, flat address, and .obj file where the symbol is defined
  • The entry point (as section:offset)
z33k
  • 3,280
  • 6
  • 24
  • 38
unwind
  • 391,730
  • 64
  • 469
  • 606