mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 11:37:33 +00:00
Bootstrap: JIT on Windows breaks certain phpseclib operations
This commit is contained in:
parent
426de8d5bf
commit
0f9d6577ad
@ -20,3 +20,13 @@ if (extension_loaded('mbstring')) {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// see https://github.com/php/php-src/issues/11917
|
||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && function_exists('opcache_get_status') && !defined('PHPSECLIB_ALLOW_JIT')) {
|
||||
$status = opcache_get_status();
|
||||
if ($status['jit']['enabled'] && $status['jit']['on']) {
|
||||
throw new UnexpectedValueException(
|
||||
'JIT on Windows is not currently supported'
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user