Title: [175419] trunk/Source/WTF
- Revision
- 175419
- Author
- [email protected]
- Date
- 2014-10-31 13:39:20 -0700 (Fri, 31 Oct 2014)
Log Message
Rolled in r175389.
WebKit was failing to build 32bit on some Apple internal systems because
those systems were configured to build bmalloc 64-bit-only. Those systems
have been updated to build bmalloc as a universal binary, so everything
should work fine now.
The relevant setting is controlled by an environment variable on the
build system, and not by the project file in the source tree, so there's
no new code change here.
Enable bmalloc in 32bit builds
https://bugs.webkit.org/show_bug.cgi?id=138232
Reviewed by Andreas Kling.
* wtf/FastMalloc.cpp:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (175418 => 175419)
--- trunk/Source/WTF/ChangeLog 2014-10-31 20:21:26 UTC (rev 175418)
+++ trunk/Source/WTF/ChangeLog 2014-10-31 20:39:20 UTC (rev 175419)
@@ -1,3 +1,23 @@
+2014-10-31 Geoffrey Garen <[email protected]>
+
+ Rolled in r175389.
+
+ WebKit was failing to build 32bit on some Apple internal systems because
+ those systems were configured to build bmalloc 64-bit-only. Those systems
+ have been updated to build bmalloc as a universal binary, so everything
+ should work fine now.
+
+ The relevant setting is controlled by an environment variable on the
+ build system, and not by the project file in the source tree, so there's
+ no new code change here.
+
+ Enable bmalloc in 32bit builds
+ https://bugs.webkit.org/show_bug.cgi?id=138232
+
+ Reviewed by Andreas Kling.
+
+ * wtf/FastMalloc.cpp:
+
2014-10-31 Lucas Forschler <[email protected]>
Unreviewed rollout r175389.
Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (175418 => 175419)
--- trunk/Source/WTF/wtf/FastMalloc.cpp 2014-10-31 20:21:26 UTC (rev 175418)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp 2014-10-31 20:39:20 UTC (rev 175419)
@@ -101,7 +101,7 @@
#endif
#endif
-#if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))
+#if PLATFORM(COCOA)
#define USE_BMALLOC 1
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes