From 0ec33b291a3ede9ade1003bca6687a03ce9253a3 Mon Sep 17 00:00:00 2001 From: SkyLake <70795425+SkyLake-git@users.noreply.github.com> Date: Tue, 26 Nov 2024 21:17:53 +0900 Subject: [PATCH] Fix windows-compile-vs.bat --- windows-compile-vs.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows-compile-vs.bat b/windows-compile-vs.bat index 29c4d47c..1850d528 100644 --- a/windows-compile-vs.bat +++ b/windows-compile-vs.bat @@ -16,7 +16,7 @@ if "%PHP_DEBUG_BUILD%"=="" ( set PHP_DEBUG_BUILD=0 ) set MSBUILD_CONFIGURATION=RelWithDebInfo -set PHP_JIT_ENABLE_ARG=off +set PHP_JIT_ENABLE_ARG=no REM NOTE: Tags with "v" prefixes behave weirdly in the GitHub API. They'll be stripped in some places but not others. REM Use commit hashes to avoid this. @@ -74,7 +74,7 @@ if "%PHP_DEBUG_BUILD%"=="0" ( ) if "%PHP_JIT_SUPPORT%"=="1" ( - set PHP_JIT_ENABLE_ARG=on + set PHP_JIT_ENABLE_ARG=yes call :pm-echo "Compiling JIT support in OPcache (unstable)" )