]> granicus.if.org Git - php/commitdiff
Update UPGRADING.INTERNALS re: removed --disable-inline-optimization switch
authorAlex Dowad <alexinbeijing@gmail.com>
Thu, 18 Jun 2020 05:56:19 +0000 (07:56 +0200)
committerAlex Dowad <alexinbeijing@gmail.com>
Wed, 24 Jun 2020 18:25:11 +0000 (20:25 +0200)
This build configuration switch was removed in 3a19726bce.

UPGRADING.INTERNALS

index 60b1323b24e373fe8ef2f8f30580201888f14e32..daf4aa3447b0555bcaf9b7c20cb0fa555eea7df1 100644 (file)
@@ -138,11 +138,18 @@ PHP 8.0 INTERNALS UPGRADE NOTES
 ========================
 
   a. Abstract
-    - Symbol HAVE_HASH_EXT is removed and is no longer defined. It should be
-      considered to have hash extension always available since PHP 7.4.
-    - Symbol HAVE_PCRE is removed and is no longer defined. It should be
-      considered to have pcre extension always available since PHP 7.4.
-    - Symbol HAVE_LOCALE_H has been removed and is no longer defined.
+    1.  Symbol HAVE_HASH_EXT is removed and is no longer defined. It should be
+        considered to have hash extension always available since PHP 7.4.
+
+    2.  Symbol HAVE_PCRE is removed and is no longer defined. It should be
+        considered to have pcre extension always available since PHP 7.4.
+
+    3.  Symbol HAVE_LOCALE_H has been removed and is no longer defined.
+
+    4.  --disable-inline-optimization (which actually disabled all compiler
+        optimizations) has been removed. If you wish to build PHP on a host
+        with extremely constrained memory, and compilation fails with an "out
+        of memory" message, add "-O0" to CFLAGS.
 
   b. Unix build system changes