diff --git a/build-setup.php b/build-setup.php index 87354212b..90757c854 100644 --- a/build-setup.php +++ b/build-setup.php @@ -93,13 +93,13 @@ site_header("Get Involved", array("current" => "community"));
Visual Studio 2008:
setenv /xp /Release /x86
cd C:\path-to-workspace
bin\phpsdk_setvars.bat
bin\phpsdk_buildtree.bat phpdev
All operating systems now converge on (near as makes no difference) the same solutions for the rest of the build process:
buildconf: generates the configure script for PHP
configure: configures the build of PHP and creates Makefile
make: builds PHP
make test: runs testsuite
make install: installs PHP
For Microsoft Windows operating systems, those commands looks like this:
buildconf
configure --with-prefix=C:\my-awesome-php
nmake
nmake test
nmake install
While for the rest of us, those commands look like this:
./buildconf
./configure --prefix=/opt/my-awesome-php
make
make test
make install
@@ -164,7 +164,7 @@ site_header("Get Involved", array("current" => "community"));
It is also possible to run a set (directory) of tests in the following way:
[n]make test TESTS=sapi/cli