File tree Expand file tree Collapse file tree 2 files changed +7
-30
lines changed Expand file tree Collapse file tree 2 files changed +7
-30
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ A modern, [feature-rich](features) and highly tunable PHP client library for [Ap
66
77This is a wrapper around [ the DataStax C/C++ Driver for Apache Cassandra and DataStax Enterprise] ( http://datastax.github.io/cpp-driver/ ) .
88
9+ * Binaries: [ http://downloads.datastax.com/php-driver/ ] ( http://downloads.datastax.com/php-driver/ )
910* Docs: [ http://datastax.github.io/php-driver/ ] ( http://datastax.github.io/php-driver/ )
1011* Code: [ https://github.com/datastax/php-driver ] ( https://github.com/datastax/php-driver )
1112* Jira: [ https://datastax-oss.atlassian.net/browse/PHP ] ( https://datastax-oss.atlassian.net/browse/PHP )
Original file line number Diff line number Diff line change @@ -112,6 +112,12 @@ Visual Studio installed you will be prompted to which version to use when
112112compiling the driver.
113113
114114First you will need to open a "Command Prompt" to execute the batch script.
115+ Running the batch script without any arguments will build the driver for PHP
116+ v5.6 with Zend thread safety (ZTS) and for the current system architecture
117+ (e.g. x64).
118+
119+ To perform advanced build configuration, execute the batch script with the
120+ ` --HELP ` argument to display the options available.
115121
116122``` dos
117123Usage: VC_BUILD.BAT [OPTION...]
@@ -136,36 +142,6 @@ Usage: VC_BUILD.BAT [OPTION...]
136142*** Default target architecture is determined based on system architecture
137143```
138144
139- To build 32-bit extension library with Zend thread safety:
140-
141- ``` dos
142- VC_BUILD.BAT --X86
143- ```
144-
145- To build 32-bit extension library with thread safety disabled:
146-
147- ``` dos
148- VC_BUILD.BAT --X86 --DISABLE-THREAD-SAFETY
149- ```
150-
151- To build 64-bit shared library with Zend thread safety:
152-
153- ``` dos
154- VC_BUILD.BAT --X64
155- ```
156-
157- To build the default system architecture using PHP v5.5:
158-
159- ``` dos
160- VC_BUILD.BAT --PHP-VERSION 5.5
161- ```
162-
163- To build the default system architecture using Boost atomic implementation:
164-
165- ``` dos
166- VC_BUILD.BAT --USE-BOOST-ATOMIC
167- ```
168-
169145#### Enable Testing
170146
171147Ensure the driver is built with --ENABLE-TEST-CONFIGURATION in order to execute
You can’t perform that action at this time.
0 commit comments