Skip to content

Commit 39a54e2

Browse files
committed
Fix #81202 powerpc64 build fails on fibers
1 parent db64aa3 commit 39a54e2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

NEWS

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? ????, PHP 8.1.0alpha3
44

5-
5+
- Core
6+
. Fixed bug #81202 (powerpc64 build fails on fibers). (krakjoe)
67

78
24 Jun 2021, PHP 8.1.0alpha2
89

configure.ac

+3-3
Original file line numberDiff line numberDiff line change
@@ -1200,8 +1200,8 @@ AS_CASE([$host_cpu],
12001200
[x86*|amd*|i?86*|pentium], [fiber_cpu="i386"],
12011201
[aarch64*|arm64*], [fiber_cpu="arm64"],
12021202
[arm*], [fiber_cpu="arm32"],
1203-
[ppc64*], [fiber_cpu="ppc64"],
1204-
[powerpc*], [fiber_cpu="ppc32"],
1203+
[ppc64*|powerpc64*], [fiber_cpu="ppc64"],
1204+
[ppc*|powerpc*], [fiber_cpu="ppc32"],
12051205
[s390x*], [fiber_cpu="s390x"],
12061206
[mips64*], [fiber_cpu="mips64"],
12071207
[mips*], [fiber_cpu="mips32"],
@@ -1219,7 +1219,7 @@ AS_CASE([$fiber_cpu],
12191219
[arm64], [fiber_asm_file_prefix="arm64_aapcs"],
12201220
[arm32], [fiber_asm_file_prefix="arm_aapcs"],
12211221
[ppc64], [fiber_asm_file_prefix="ppc64_sysv"],
1222-
[ppc32], [fiber_asm_file_prefix="ppc_sysv"],
1222+
[ppc32], [fiber_asm_file_prefix="ppc32_sysv"],
12231223
[s390x], [fiber_asm_file_prefix="s390x_sysv"],
12241224
[mips64], [fiber_asm_file_prefix="mips64_n64"],
12251225
[mips32], [fiber_asm_file_prefix="mips32_o32"],

0 commit comments

Comments
 (0)