File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ PHP 8.4 INTERNALS UPGRADE NOTES
59
59
system.
60
60
- HAVE_WIN32_NATIVE_THREAD, USE_WIN32_NATIVE_THREAD, ENABLE_THREADS symbols
61
61
in ext/mbstring/libmbfl removed.
62
+ - FIBER_ASSEMBLER and FIBER_ASM_ARCH Makefile variables removed in favor of
63
+ PHP_ASSEMBLER and FIBER_ASM_ABI.
62
64
63
65
========================
64
66
3. Module changes
Original file line number Diff line number Diff line change @@ -252,14 +252,6 @@ if (!PHP_ASSEMBLER) {
252
252
ERROR ( "No assembler found, fiber cannot be built" ) ;
253
253
}
254
254
DEFINE ( 'PHP_ASSEMBLER' , PHP_ASSEMBLER ) ;
255
- DEFINE ( 'FIBER_ASSEMBLER' , PHP_ASSEMBLER ) ; // for compatible
256
-
257
- var FIBER_ASM_ARCH = {
258
- 'x64' : 'x86_64' ,
259
- 'x86' : 'i386' ,
260
- 'arm64' : 'arm64'
261
- } [ TARGET_ARCH ] ;
262
- DEFINE ( 'FIBER_ASM_ARCH' , FIBER_ASM_ARCH ) ; // for compatible only
263
255
264
256
var FIBER_ASM_ABI = {
265
257
'x64' : 'x86_64_ms_pe_masm' ,
You can’t perform that action at this time.
0 commit comments