comparison auto/cc/msvc @ 1637:c70756577bf7

option -Yd has been deprecated in msvc8, option -debugtype:coff is unsupported in msvc8
author Igor Sysoev <igor@sysoev.ru>
date Thu, 15 Nov 2007 10:59:07 +0000
parents f2cf053d14fb
children 59abcddc013a
comparison
equal deleted inserted replaced
1636:f2cf053d14fb 1637:c70756577bf7
89 # Win32 GUI mode application 89 # Win32 GUI mode application
90 CORE_LIBS="$CORE_LIBS kernel32.lib user32.lib" 90 CORE_LIBS="$CORE_LIBS kernel32.lib user32.lib"
91 CORE_LINK="$CORE_LINK -subsystem:windows -entry:mainCRTStartup" 91 CORE_LINK="$CORE_LINK -subsystem:windows -entry:mainCRTStartup"
92 92
93 # debug 93 # debug
94 CFLAGS="$CFLAGS -Yd" 94 CFLAGS="$CFLAGS -Zi"
95 CORE_LINK="$CORE_LINK -debug -debugtype:coff" 95 CORE_LINK="$CORE_LINK -debug"
96 96
97 97
98 # precompiled headers 98 # precompiled headers
99 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch" 99 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch"
100 NGX_PCH="$NGX_OBJS/ngx_config.pch" 100 NGX_PCH="$NGX_OBJS/ngx_config.pch"