internals:windows:release

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
internals:windows:release [2008/04/11 13:46] – created pajoyeinternals:windows:release [2017/09/22 13:28] (current) – external edit 127.0.0.1
Line 1: Line 1:
 How to build a release for Windows, step by step guide for Release Master or Windows Team How to build a release for Windows, step by step guide for Release Master or Windows Team
 +
 +The main windows build box (also responsible for http://windows.php.net/snapshots/ builds) is located at our UK based Windows host (ask the Windows Team for the address) and is accessible via rdp (remote desktop protocol) not ssh. Currently Pierre, Rob, Elizabeth and Bjori have accounts on it.  The VC6 and VC9 compilers are used for the builds - with service packs and the last sdk that works with vc6 (feb 2003) and PSKD 6.1 for VC9. Licenses are Pierre's copies. Details about the SDK can be found [[http://wiki.php.net/internals/windows/windowssdk|here]]
 +
 +Libraries for the box are in c:\php-sdk\mytree\vcvers\architecture\deps
 +
 +The libraries used by each PHP version are listed in [[http://wiki.php.net/internals/windows/libs|here]].
 +
 +The snapshots and build scripts are available in CVS, module php-internals-win (no cygwin required). The batch are called using a [[http://technet.microsoft.com/en-us/library/bb490996.aspx|schtasks]] task.
 +
 +
 +Configure lines for the release builds
 +
 +===== PHP 5.2.x =====
 +
 +==== Thread Safe ====
 +<code bash>
 + cscript /nologo configure.js  "--enable-snapshot-build" "--enable-debug-pack" "--with-snapshot-template=d:\php-sdk\snap_5_2\vc6\x86\template" "--with-php-build=d:\php-sdk\snap_5_2\vc6\x86\php_build" "--with-pdo-oci=D:\php-sdk\oracle\instantclient10\sdk,shared" "--with-oci8=D:\php-sdk\oracle\instantclient10\sdk,shared"
 +</code>
 +
 +==== Non Thread Safe ====
 +<code bash>
 +cscript /nologo configure.js  "--enable-snapshot-build" "--enable-debug-pack" "--with-snapshot-template=d:\php-sdk\snap_5_2\vc6\x86\template" "--with-php-build=d:\php-sdk\snap_5_2\vc6\x86\php_build" "--disable-zts" "--disable-isapi" "--disable-nsapi" "--with-pdo-oci=D:\php-sdk\oracle\instantclient10\sdk,shared" "--with-oci8=D:\php-sdk\oracle\instantclient10\sdk,shared"
 +</code>
 +
 +
 +===== PHP 5.3.x =====
 +==== Thread Safe ====
 +<code bash>
 +configure.bat --enable-snapshot-build --enable-debug-pack --with-pdo-oci=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8-11g=C:\php-sdk\oracle\instantclient11\sdk,shared
 +</code>
 +
 +==== Non Thread Safe ====
 +<code bash>
 +configure.bat --enable-snapshot-build --enable-debug-pack --disable-zts --disable-isapi --disable-nsapi --with-pdo-oci=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8-11g=C:\php-sdk\oracle\instantclient11\sdk,shared
 +</code>
 +
 +===== PHP 6 =====
 +==== Thread Safe ====
 +<code bash>
 +configure.bat --enable-snapshot-build --enable-debug-pack --without-static-icu --with-pdo-oci=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8-11g=C:\php-sdk\oracle\instantclient11\sdk,shared
 +</code>
 +
 +==== Non Thread Safe ====
 +<code bash>
 +configure.bat --enable-snapshot-build --enable-debug-pack --without-static-icu --disable-zts --disable-isapi --disable-nsapi --with-pdo-oci=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8=C:\php-sdk\oracle\instantclient10\sdk,shared --with-oci8-11g=C:\php-sdk\oracle\instantclient11\sdk,shared
 +</code>
 +
internals/windows/release.1207921587.txt.gz · Last modified: 2017/09/22 13:28 (external edit)