1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Change default build to release, to be consistent with unix build.

Make it possible to set the default from builenv.bat.

Per request from Dave Page
This commit is contained in:
Magnus Hagander
2007-04-18 10:14:06 +00:00
parent 5574c9f3a5
commit 62d25256f1
2 changed files with 28 additions and 12 deletions

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.38 2007/03/29 15:30:52 mha Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.39 2007/04/18 10:14:06 mha Exp $ -->
<chapter id="install-win32">
<title>Installation on <productname>Windows</productname></title>
@ -186,17 +186,17 @@
<title>Building</title>
<para>
To build all of PostgreSQL in debug configuration (the default), run the
To build all of PostgreSQL in release configuration (the default), run the
command:
<screen>
<userinput>
build
</userinput>
</screen>
To build all of PostgreSQL in release configuration, run the command:
To build all of PostgreSQL in debug configuration, run the command:
<screen>
<userinput>
build RELEASE
build DEBUG
</userinput>
</screen>
To build just a single project, for example psql, run the commands:
@ -205,7 +205,14 @@
build psql
</userinput>
<userinput>
build RELEASE psql
build DEBUG psql
</userinput>
</screen>
To change the default build configuration to debug, put the following
in the buildenv.bat file:
<screen>
<userinput>
set CONFIG=Debug
</userinput>
</screen>
</para>