Changeset 175419 in webkit


Ignore:
Timestamp:
Oct 31, 2014, 1:39:20 PM (11 years ago)
Author:
ggaren@apple.com
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:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r175409 r175419  
     12014-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
    1212014-10-31  Lucas Forschler  <lforschler@apple.com>
    222
  • trunk/Source/WTF/wtf/FastMalloc.cpp

    r175409 r175419  
    102102#endif
    103103
    104 #if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))
     104#if PLATFORM(COCOA)
    105105#define USE_BMALLOC 1
    106106#endif
Note: See TracChangeset for help on using the changeset viewer.