[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
link error
msvc7.net
allegro 4.1.11
winXP
alld_s.lib(allegro.obj) : warning LNK4204: 'd:\c\Debug\vc70.pdb' is missing
debugging information for referencing module; linking object as if no debug
info
alld_s.lib(blit.obj) : warning LNK4204: 'd:\c\Debug\vc70.pdb' is missing
debugging information for referencing module; linking object as if no debug
info
alld_s.lib(bmp.obj) : warning LNK4204: 'd:\c\Debug\vc70.pdb' is missing
debugging information for referencing module; linking object as if no debug
info
alld_s.lib(colblend.obj) : warning LNK4204: 'd:\c\Debug\vc70.pdb' is
missing debugging information for referencing module; linking object as if
no debug info
---snip the rest ----
MSDN (v7.net) describes problem as:
LNK4202
'filename' is missing debugging information for referencing module; linking
object as if no debug info
The .pdb file has an erroneous signature. The linker will continue to link
the object without debug information. You may want to recompile the object
file using the /Zi option.
MSDN describes the /Zi option as:
/Zi Produces a program database (PDB) that contains type information and
symbolic debugging information for use with the debugger.
it looks like the makefile needs to include the /Zi switch.