Skip to content

Commit bf9dc53

Browse files
committed
Fixed bug #81007
Backport a change from the master branch. We usually test 32-bit using -m32 from an x86-64 host, probably nobody tried using an actual 32-bit host.
1 parent 068c8db commit bf9dc53

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ PHP NEWS
1919
- ODBC:
2020
. Fixed bug #80460 (ODBC doesn't account for SQL_NO_TOTAL indicator). (cmb)
2121

22+
- Opcache:
23+
. Fixed bug #81007 (JIT "not supported" on 32-bit x86 -- build problem?).
24+
(Nikita)
25+
2226
- PDO_pgsql:
2327
. Reverted bug fix for #80892 (PDO::PARAM_INT is treated the same as
2428
PDO::PARAM_STR). (Matteo)

ext/opcache/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if test "$PHP_OPCACHE" != "no"; then
2929

3030
if test "$PHP_OPCACHE_JIT" = "yes"; then
3131
case $host_cpu in
32-
x86*)
32+
i[[34567]]86*|x86*)
3333
;;
3434
*)
3535
AC_MSG_WARN([JIT not supported by host architecture])

0 commit comments

Comments
 (0)