From: Magnus Hagander Date: Mon, 10 Aug 2009 11:48:52 +0000 (+0000) Subject: Enable the use of multiple CPUs/cores when building on MSVC. This only X-Git-Tag: REL8_4_1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9234b2bec02af22842214b2867e704071c009fa;p=postgresql Enable the use of multiple CPUs/cores when building on MSVC. This only affects the C compiler step - we still only build one target at a time. --- diff --git a/src/tools/msvc/Project.pm b/src/tools/msvc/Project.pm index 385b757ed7..2e74d81ecd 100644 --- a/src/tools/msvc/Project.pm +++ b/src/tools/msvc/Project.pm @@ -3,7 +3,7 @@ package Project; # # Package that encapsulates a Visual C++ project file generation # -# $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.19 2008/04/15 16:22:36 adunstan Exp $ +# $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.19.2.1 2009/08/10 11:48:52 mha Exp $ # use Carp; use strict; @@ -501,6 +501,7 @@ sub WriteConfiguration PreprocessorDefinitions="WIN32;_WINDOWS;__WINDOWS__;__WIN32__;EXEC_BACKEND;WIN32_STACK_RLIMIT=4194304;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE$self->{defines}$p->{defs}" StringPooling="$p->{strpool}" RuntimeLibrary="$p->{runtime}" DisableSpecificWarnings="$self->{disablewarnings}" + AdditionalOptions="/MP" EOF print $f <