Let's say that I have static library which generates it's debug info in pdb format with /Zi option. Next let's link it into executable which also generates its debug info in pdb.
- Am I right that the debug info of the static library will be merged into
pdbof the executable? - If the library generates it's debug info directly in
libfile with/Z7option, but the executable still usespdbwhere the debug info from the static library will be merged? Into thepdbfile or directly in executable?