Changeset 49010 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 2, 2009, 12:31:22 AM (16 years ago)
Author:
Simon Hausmann
Message:

Allow enabling and disabling of the JIT through a qmake variable.

Patch by Jørgen Lind <[email protected]> on 2009-10-02
Reviewed by Simon Hausmann.

Qt's configure may set this variable through .qmake.cache if a
commandline option is given and/or the compile test for hwcap.h
failed/succeeded.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r49008 r49010  
     12009-10-02  Jørgen Lind  <[email protected]>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Allow enabling and disabling of the JIT through a qmake variable.
     6
     7        Qt's configure may set this variable through .qmake.cache if a
     8        commandline option is given and/or the compile test for hwcap.h
     9        failed/succeeded.
     10
     11        * JavaScriptCore.pri:
     12
    1132009-10-01  Mark Rowe  <[email protected]>
    214
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r48976 r49010  
    3737    LIBS += -lwinmm
    3838}
     39contains(JAVASCRIPTCORE_JIT,yes): DEFINES+=ENABLE_JIT=1
     40contains(JAVASCRIPTCORE_JIT,no): DEFINES+=ENABLE_JIT=0
    3941
    4042# In debug mode JIT disabled until crash fixed
Note: See TracChangeset for help on using the changeset viewer.