1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Change default method of disabling JIT

https://wiki.php.net/rfc/jit_config_defaults
Closes GH-12678
This commit is contained in:
Daniil Gentili
2023-11-28 20:14:58 +01:00
committed by Ilija Tovilo
parent e0737d9376
commit c16ad918ba
386 changed files with 15 additions and 385 deletions

View File

@@ -118,7 +118,8 @@ function runValgrindPhpCgiCommand(
'-T' . ($warmup ? $warmup . ',' : '') . $repeat,
'-d max_execution_time=0',
'-d opcache.enable=1',
'-d opcache.jit_buffer_size=' . ($jit ? '128M' : '0'),
'-d opcache.jit=' . ($jit ? 'tracing' : 'disable'),
'-d opcache.jit_buffer_size=128M',
'-d opcache.validate_timestamps=0',
...$args,
]);