Changeset 61853 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 25, 2010, 5:28:44 AM (15 years ago)
Author:
[email protected]
Message:

2010-06-25 Lucas De Marchi <[email protected]>

Reviewed by Kenneth Rohde Christiansen.

[CMake] Add option to enable JIT.
JIT is disabled by default, but now it's possible to enable it through
an option to CMake: -DENABLE_JIT will enable it.
https://bugs.webkit.org/show_bug.cgi?id=40936

  • cmake/OptionsEfl.cmake: add new -DENABLE_JIT option.
  • cmakeconfig.h.cmake: use new -DENABLE_JIT option.

2010-06-25 Lucas De Marchi <[email protected]>

Reviewed by Kenneth Rohde Christiansen.

[CMake] Add option to enable JIT.
JIT is disabled by default, but now it's possible to enable it through
an option to CMake: -DENABLE_JIT will enable it.
https://bugs.webkit.org/show_bug.cgi?id=40936

  • CMakeLists.txt: Add missing files and re-sort.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/CMakeLists.txt

    r61763 r61853  
    5555    jit/ExecutableAllocatorSymbian.cpp
    5656    jit/ExecutableAllocatorWin.cpp
     57    jit/JITArithmetic32_64.cpp
     58    jit/JITArithmetic.cpp
     59    jit/JITCall32_64.cpp
     60    jit/JITCall.cpp
     61    jit/JIT.cpp
     62    jit/JITOpcodes32_64.cpp
     63    jit/JITOpcodes.cpp
     64    jit/JITPropertyAccess32_64.cpp
     65    jit/JITPropertyAccess.cpp
    5766    jit/JITStubs.cpp
    58     jit/JITOpcodes.cpp
    59     jit/JITOpcodes32_64.cpp
    60     jit/JITPropertyAccess.cpp
    61     jit/JITPropertyAccess32_64.cpp
    62     jit/JITArithmetic.cpp
    63     jit/JITCall.cpp
    64     jit/JITCall32_64.cpp
    65     jit/JIT.cpp
     67    jit/ThunkGenerators.cpp
    6668
    6769    parser/JSParser.cpp
  • trunk/JavaScriptCore/ChangeLog

    r61852 r61853  
     12010-06-25  Lucas De Marchi  <[email protected]>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [CMake] Add option to enable JIT.
     6        JIT is disabled by default, but now it's possible to enable it through
     7        an option to CMake: -DENABLE_JIT will enable it.
     8        https://bugs.webkit.org/show_bug.cgi?id=40936
     9
     10        * CMakeLists.txt: Add missing files and re-sort.
     11
    1122010-06-25  Lucas De Marchi  <[email protected]>
    213
Note: See TracChangeset for help on using the changeset viewer.