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 2e6d34c + 1894245 commit 477aadeCopy full SHA for 477aade
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
12 Oct 2023, PHP 8.3.0RC4
12
13
ext/opcache/ZendAccelerator.c
@@ -3253,6 +3253,7 @@ static zend_result accel_post_startup(void)
3253
|| zend_jit_startup(ZSMMG(reserved), jit_size, reattached) != SUCCESS) {
3254
JIT_G(enabled) = false;
3255
JIT_G(on) = false;
3256
+ zend_accel_error(ACCEL_LOG_WARNING, "Could not enable JIT!");
3257
}
3258
3259
#endif
0 commit comments