Win32: defined pdb path.
By default, MSVC uses vc<version>.pdb in the current directory.
With the "-Fd" switch it is directed to be in the objs directory instead.
Maxim Dounin
3 years ago
107 | 107 |
# msvc under Wine issues
|
108 | 108 |
# C1902: Program database manager mismatch; please check your installation
|
109 | 109 |
if [ -z "$NGX_WINE" ]; then
|
110 | |
CFLAGS="$CFLAGS -Zi"
|
|
110 |
CFLAGS="$CFLAGS -Zi -Fd$NGX_OBJS/nginx.pdb"
|
111 | 111 |
CORE_LINK="$CORE_LINK -debug"
|
112 | 112 |
fi
|
113 | 113 |
|