Skip to content

Commit 314e536

Browse files
committed
Add wiki link and update build instructions for 8.5
1 parent a8a3c81 commit 314e536

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/release-process.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ repository available according to the release schedule.
66
The release schedule for each version is published on the
77
[PHP wiki](https://wiki.php.net):
88

9+
- [PHP 8.5](https://wiki.php.net/todo/php85)
910
- [PHP 8.4](https://wiki.php.net/todo/php84)
1011
- [PHP 8.3](https://wiki.php.net/todo/php83)
1112
- [PHP 8.2](https://wiki.php.net/todo/php82)
@@ -219,15 +220,15 @@ slightly different steps. We'll call attention where the steps differ.
219220
# With ZTS
220221
make distclean || \
221222
./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 \
223224
&& make -j$(nproc) \
224225
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
225226
|| ./sapi/cli/php -v
226227
227228
# Without ZTS
228229
make distclean || \
229230
./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 \
231232
&& make -j$(nproc) \
232233
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
233234
|| ./sapi/cli/php -v

0 commit comments

Comments
 (0)