We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53dbb76 + 7177461 commit 1894245Copy full SHA for 1894245
NEWS
@@ -5,6 +5,9 @@ PHP NEWS
5
- Core:
6
. Fixed double-free of non-interned enum case name. (ilutov)
7
8
+- Opcache:
9
+ . Added warning when JIT cannot be enabled. (danog)
10
+
11
26 Oct 2023, PHP 8.2.12
12
13
ext/opcache/ZendAccelerator.c
@@ -3278,6 +3278,7 @@ static zend_result accel_post_startup(void)
3278
|| zend_jit_startup(ZSMMG(reserved), jit_size, reattached) != SUCCESS) {
3279
JIT_G(enabled) = false;
3280
JIT_G(on) = false;
3281
+ zend_accel_error(ACCEL_LOG_WARNING, "Could not enable JIT!");
3282
}
3283
3284
#endif
0 commit comments