Changeset 196749 in webkit


Ignore:
Timestamp:
Feb 18, 2016 12:29:51 AM (8 years ago)
Author:
Michael Catanzaro
Message:

[CMake] Remove LLVM support
https://bugs.webkit.org/show_bug.cgi?id=154370

Reviewed by Csaba Osztrogonác.

After switching all CMake ports to B3, this was only needed for the LLVM disassembler, which
has been removed from JSC. Feel free to bring this back if restoring the LLVM disassembler,
but for the time being this is dead code.

  • Source/cmake/FindLLVM.cmake: Removed.
  • Source/cmake/OptionsCommon.cmake:
Location:
trunk
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r196748 r196749  
     12016-02-18  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [CMake] Remove LLVM support
     4        https://bugs.webkit.org/show_bug.cgi?id=154370
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        After switching all CMake ports to B3, this was only needed for the LLVM disassembler, which
     9        has been removed from JSC. Feel free to bring this back if restoring the LLVM disassembler,
     10        but for the time being this is dead code.
     11
     12        * Source/cmake/FindLLVM.cmake: Removed.
     13        * Source/cmake/OptionsCommon.cmake:
     14
    1152016-02-18  Joonghun Park  <jh718.park@samsung.com>
    216
  • trunk/Source/cmake/OptionsCommon.cmake

    r196241 r196749  
    125125endif ()
    126126
    127 if (USE_LLVM_DISASSEMBLER)
    128     find_package(LLVM REQUIRED)
    129     SET_AND_EXPOSE_TO_BUILD(HAVE_LLVM TRUE)
    130 endif ()
    131 
    132127# Enable the usage of OpenMP.
    133128#  - At this moment, OpenMP is only used as an alternative implementation
Note: See TracChangeset for help on using the changeset viewer.