diff options
author | Noah Misch <noah@leadboat.com> | 2016-09-08 01:42:09 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2016-09-08 01:42:09 -0400 |
commit | d299eb41dfc7b73dec80f22554b952f01c9d54a4 (patch) | |
tree | b3b30189bb3c848aadb2aaf501688d719c779b32 /doc/src | |
parent | 976a9bbd0251ea112898f85314646801e7e6207d (diff) | |
download | postgresql-d299eb41dfc7b73dec80f22554b952f01c9d54a4.tar.gz postgresql-d299eb41dfc7b73dec80f22554b952f01c9d54a4.zip |
MSVC: Pass any user-set MSBFLAGS to MSBuild and VCBUILD.
This is particularly useful to pass /m, to perform a parallel build.
Christian Ullrich, reviewed by Michael Paquier.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/install-windows.sgml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml index 8cd189c8e15..50116f315dc 100644 --- a/doc/src/sgml/install-windows.sgml +++ b/doc/src/sgml/install-windows.sgml @@ -145,6 +145,14 @@ $ENV{PATH}=$ENV{PATH} . ';c:\some\where\bison\bin'; </programlisting> </para> + <para> + To pass additional command line arguments to the Visual Studio build + command (msbuild or vcbuild): +<programlisting> +$ENV{MSBFLAGS}="/m"; +</programlisting> + </para> + <sect2> <title>Requirements</title> <para> |