comparison auto/cc/msvc @ 5639:ce98b460606e

Win32: fixed link flags with MSVC, broken by bfe536716dbf. Notably, "-debug" was omitted, resulting in an executable without debug symbols.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 07 Apr 2014 18:29:05 +0400
parents bfe536716dbf
children 85dea406e18f
comparison
equal deleted inserted replaced
5638:0c0dd1aacdf5 5639:ce98b460606e
104 fi 104 fi
105 105
106 106
107 # precompiled headers 107 # precompiled headers
108 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch" 108 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch"
109 CORE_LINK="$NGX_OBJS/ngx_pch.obj" 109 CORE_LINK="$CORE_LINK $NGX_OBJS/ngx_pch.obj"
110 NGX_PCH="$NGX_OBJS/ngx_config.pch" 110 NGX_PCH="$NGX_OBJS/ngx_config.pch"
111 NGX_BUILD_PCH="-Ycngx_config.h -Fp$NGX_OBJS/ngx_config.pch" 111 NGX_BUILD_PCH="-Ycngx_config.h -Fp$NGX_OBJS/ngx_config.pch"
112 NGX_USE_PCH="-Yungx_config.h -Fp$NGX_OBJS/ngx_config.pch" 112 NGX_USE_PCH="-Yungx_config.h -Fp$NGX_OBJS/ngx_config.pch"
113 113
114 114