Use -Zi and PDB's for dll creation too

This commit is contained in:
kipp%netscape.com 1998-08-28 23:32:47 +00:00
parent 80a9283964
commit 595b3252f4

View File

@ -28,3 +28,12 @@ PDBFILE=$(LIBRARY_NAME)
OS_LFLAGS=/DEBUG /DEBUGTYPE:CV /PDB:$(PDBFILE)
!endif
!endif
# Replace optimizer and pdb related flags to use our own conventions
!ifdef DLLNAME
!ifdef MOZ_DEBUG
OPTIMIZER=-Zi -DDEBUG -UNDEBUG -D_DEBUG
PDBFILE=$(DLLNAME)
OS_LFLAGS=/DEBUG /DEBUGTYPE:CV /PDB:$(PDBFILE)
!endif
!endif