From: Maxim Dounin Date: Mon, 7 Apr 2014 14:29:05 +0000 (+0400) Subject: Win32: fixed link flags with MSVC, broken by bfe536716dbf. X-Git-Tag: release-1.5.13~7 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=876a3c9b97ce01b7b2576842b8bade7942017861;p=nginx.git Win32: fixed link flags with MSVC, broken by bfe536716dbf. Notably, "-debug" was omitted, resulting in an executable without debug symbols. --- diff --git a/auto/cc/msvc b/auto/cc/msvc index 6cb8b3d58..393ba3214 100644 --- a/auto/cc/msvc +++ b/auto/cc/msvc @@ -106,7 +106,7 @@ fi # precompiled headers CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch" -CORE_LINK="$NGX_OBJS/ngx_pch.obj" +CORE_LINK="$CORE_LINK $NGX_OBJS/ngx_pch.obj" NGX_PCH="$NGX_OBJS/ngx_config.pch" NGX_BUILD_PCH="-Ycngx_config.h -Fp$NGX_OBJS/ngx_config.pch" NGX_USE_PCH="-Yungx_config.h -Fp$NGX_OBJS/ngx_config.pch"