1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 09:21:50 -05:00

winbuild: make linker generate proper PDB

Link.exe requires /DEBUG to properly generate a full pdb file on release
builds.

Closes #2274
This commit is contained in:
Adam Marcionek 2018-01-29 11:41:11 -05:00 committed by Daniel Stenberg
parent fecec1d8ae
commit a406e86ecb
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -68,7 +68,7 @@ LNKDLL = link.exe /DLL
LNKLIB = link.exe /lib LNKLIB = link.exe /lib
CFLAGS_PDB = /Zi CFLAGS_PDB = /Zi
LFLAGS_PDB = /incremental:no /opt:ref,icf LFLAGS_PDB = /incremental:no /opt:ref,icf /DEBUG
CFLAGS_LIBCURL_STATIC = /DCURL_STATICLIB CFLAGS_LIBCURL_STATIC = /DCURL_STATICLIB