1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 12:24:49 +01:00

Always use 0x7FFEBFFF opcache optimization level (fixes #9340)

This commit is contained in:
Daniil Gentili 2023-02-19 16:57:23 +01:00
parent d934875532
commit 5df21fe448

View File

@ -66,6 +66,10 @@ class PsalmRestarter extends XdebugHandler
if (((int) ini_get('opcache.jit')) === 0) {
return true;
}
if (ini_get('opcache.optimization_level') !== '0x7FFEBFFF') {
return true;
}
}
return $default || $this->required;
@ -98,6 +102,7 @@ class PsalmRestarter extends XdebugHandler
'-dopcache.enable_cli=true',
'-dopcache.jit_buffer_size=512M',
'-dopcache.jit=1205',
'-dopcache.optimization_level=0x7FFEBFFF',
];
}