Skip to content

Document Updates #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ A modern, [feature-rich](features) and highly tunable PHP client library for [Ap

This is a wrapper around [the DataStax C/C++ Driver for Apache Cassandra and DataStax Enterprise](http://datastax.github.io/cpp-driver/).

* Binaries: [http://downloads.datastax.com/php-driver/](http://downloads.datastax.com/php-driver/)
* Docs: [http://datastax.github.io/php-driver/](http://datastax.github.io/php-driver/)
* Code: [https://github.com/datastax/php-driver](https://github.com/datastax/php-driver)
* Jira: [https://datastax-oss.atlassian.net/browse/PHP](https://datastax-oss.atlassian.net/browse/PHP)
Expand Down
36 changes: 6 additions & 30 deletions ext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ Visual Studio installed you will be prompted to which version to use when
compiling the driver.

First you will need to open a "Command Prompt" to execute the batch script.
Running the batch script without any arguments will build the driver for PHP
v5.6 with Zend thread safety (ZTS) and for the current system architecture
(e.g. x64).

To perform advanced build configuration, execute the batch script with the
`--HELP` argument to display the options available.

```dos
Usage: VC_BUILD.BAT [OPTION...]
Expand All @@ -136,36 +142,6 @@ Usage: VC_BUILD.BAT [OPTION...]
*** Default target architecture is determined based on system architecture
```

To build 32-bit extension library with Zend thread safety:

```dos
VC_BUILD.BAT --X86
```

To build 32-bit extension library with thread safety disabled:

```dos
VC_BUILD.BAT --X86 --DISABLE-THREAD-SAFETY
```

To build 64-bit shared library with Zend thread safety:

```dos
VC_BUILD.BAT --X64
```

To build the default system architecture using PHP v5.5:

```dos
VC_BUILD.BAT --PHP-VERSION 5.5
```

To build the default system architecture using Boost atomic implementation:

```dos
VC_BUILD.BAT --USE-BOOST-ATOMIC
```

#### Enable Testing

Ensure the driver is built with --ENABLE-TEST-CONFIGURATION in order to execute
Expand Down