Changeset 54287 in webkit


Ignore:
Timestamp:
Feb 3, 2010 10:52:05 AM (14 years ago)
Author:
kevino@webkit.org
Message:

Reviewed by Kevin Ollivier.

[wx] Enable JIT compilation for wx.

https://bugs.webkit.org/show_bug.cgi?id=34536

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54265 r54287  
     12010-02-03  Kevin Watters  <kevinwatters@gmail.com>
     2
     3        Reviewed by Kevin Ollivier.
     4
     5        [wx] Enable JIT compilation for wx.
     6       
     7        https://bugs.webkit.org/show_bug.cgi?id=34536
     8
     9        * wtf/Platform.h:
     10
    1112010-02-02  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/JavaScriptCore/wtf/Platform.h

    r54220 r54287  
    851851#endif
    852852
    853 #if PLATFORM(QT)
     853#if PLATFORM(QT) || PLATFORM(WX)
    854854#if CPU(X86_64) && OS(DARWIN)
    855855    #define ENABLE_JIT 1
     
    915915    || (CPU(X86_64) && PLATFORM(MAC)) \
    916916    || (CPU(ARM_THUMB2) && PLATFORM(IPHONE)) \
    917     || (CPU(X86) && PLATFORM(WIN))
     917    || (CPU(X86) && PLATFORM(WIN)) \
     918    || (CPU(X86) && PLATFORM(WX))
    918919#define ENABLE_YARR 1
    919920#define ENABLE_YARR_JIT 1
  • trunk/WebKitTools/ChangeLog

    r54269 r54287  
     12010-02-03  Kevin Watters  <kevinwatters@gmail.com>
     2
     3        Reviewed by Kevin Ollivier.
     4
     5        [wx] Enable JIT compilation for wx.
     6       
     7        https://bugs.webkit.org/show_bug.cgi?id=34536
     8
     9        * wx/build/settings.py:
     10
    1112010-02-02  Kevin Ollivier  <kevino@theolliviers.com>
    212
  • trunk/WebKitTools/wx/build/settings.py

    r54043 r54287  
    9393    'wtf/unicode',
    9494    'wtf/unicode/icu',
     95    'yarr',
    9596]
    9697
Note: See TracChangeset for help on using the changeset viewer.