From 593d0ac54b8a59211030ce1e32d7c14610129db9 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 28 Jan 2024 16:24:52 +0100 Subject: [PATCH] Remove unused variables FIBER_ASSEMBLER and FIBER_ASM_ARCH In Windows build system these were replaced with common PHP_ASSEMBLER and FIBER_ASM_ABI when adjusting for the arm64. --- win32/build/config.w32 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 8941dbf04541f..2ee0d52eb33c6 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -252,14 +252,6 @@ if (!PHP_ASSEMBLER) { ERROR("No assembler found, fiber cannot be built"); } DEFINE('PHP_ASSEMBLER', PHP_ASSEMBLER); -DEFINE('FIBER_ASSEMBLER', PHP_ASSEMBLER);// for compatible - -var FIBER_ASM_ARCH = { - 'x64': 'x86_64', - 'x86': 'i386', - 'arm64': 'arm64' -}[TARGET_ARCH]; -DEFINE('FIBER_ASM_ARCH', FIBER_ASM_ARCH); // for compatible only var FIBER_ASM_ABI = { 'x64': 'x86_64_ms_pe_masm',