File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ repository available according to the release schedule.
6
6
The release schedule for each version is published on the
7
7
[ PHP wiki] ( https://wiki.php.net ) :
8
8
9
+ - [ PHP 8.5] ( https://wiki.php.net/todo/php85 )
9
10
- [ PHP 8.4] ( https://wiki.php.net/todo/php84 )
10
11
- [ PHP 8.3] ( https://wiki.php.net/todo/php83 )
11
12
- [ PHP 8.2] ( https://wiki.php.net/todo/php82 )
@@ -219,15 +220,15 @@ slightly different steps. We'll call attention where the steps differ.
219
220
# With ZTS
220
221
make distclean || \
221
222
./buildconf --force \
222
- && ./configure --enable-zts --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
223
+ && ./configure --enable-option-checking=fatal --enable-zts --disable-all --enable-debug --enable-opcache-jit \
223
224
&& make -j$(nproc) \
224
225
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
225
226
|| ./sapi/cli/php -v
226
227
227
228
# Without ZTS
228
229
make distclean || \
229
230
./buildconf --force \
230
- && ./configure --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
231
+ && ./configure --enable-option-checking=fatal --disable-all --enable-debug --enable-opcache-jit \
231
232
&& make -j$(nproc) \
232
233
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
233
234
|| ./sapi/cli/php -v
You can’t perform that action at this time.
0 commit comments