Changeset 175419 in webkit
- Timestamp:
- Oct 31, 2014, 1:39:20 PM (11 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r175409 r175419 1 2014-10-31 Geoffrey Garen <ggaren@apple.com> 2 3 Rolled in r175389. 4 5 WebKit was failing to build 32bit on some Apple internal systems because 6 those systems were configured to build bmalloc 64-bit-only. Those systems 7 have been updated to build bmalloc as a universal binary, so everything 8 should work fine now. 9 10 The relevant setting is controlled by an environment variable on the 11 build system, and not by the project file in the source tree, so there's 12 no new code change here. 13 14 Enable bmalloc in 32bit builds 15 https://bugs.webkit.org/show_bug.cgi?id=138232 16 17 Reviewed by Andreas Kling. 18 19 * wtf/FastMalloc.cpp: 20 1 21 2014-10-31 Lucas Forschler <lforschler@apple.com> 2 22 -
trunk/Source/WTF/wtf/FastMalloc.cpp
r175409 r175419 102 102 #endif 103 103 104 #if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))104 #if PLATFORM(COCOA) 105 105 #define USE_BMALLOC 1 106 106 #endif
Note:
See TracChangeset
for help on using the changeset viewer.