File tree 2 files changed +7
-30
lines changed
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
6
6
7
7
This is a wrapper around [ the DataStax C/C++ Driver for Apache Cassandra and DataStax Enterprise] ( http://datastax.github.io/cpp-driver/ ) .
8
8
9
+ * Binaries: [ http://downloads.datastax.com/php-driver/ ] ( http://downloads.datastax.com/php-driver/ )
9
10
* Docs: [ http://datastax.github.io/php-driver/ ] ( http://datastax.github.io/php-driver/ )
10
11
* Code: [ https://github.com/datastax/php-driver ] ( https://github.com/datastax/php-driver )
11
12
* 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
112
112
compiling the driver.
113
113
114
114
First 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.
115
121
116
122
``` dos
117
123
Usage: VC_BUILD.BAT [OPTION...]
@@ -136,36 +142,6 @@ Usage: VC_BUILD.BAT [OPTION...]
136
142
*** Default target architecture is determined based on system architecture
137
143
```
138
144
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
-
169
145
#### Enable Testing
170
146
171
147
Ensure the driver is built with --ENABLE-TEST-CONFIGURATION in order to execute
You can’t perform that action at this time.
0 commit comments