Changeset 169418 in webkit


Ignore:
Timestamp:
May 28, 2014 2:49:20 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Make it possible to build with FTL enabled
https://bugs.webkit.org/show_bug.cgi?id=133219

Reviewed by Philippe Normand.

.:
Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.

  • Source/cmake/OptionsGTK.cmake:

Tools:

  • gtk/jhbuild-optional.modules: Add llvm from svn and build the

same revision than mac.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r169416 r169418  
     12014-05-28  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Make it possible to build with FTL enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=133219
     5
     6        Reviewed by Philippe Normand.
     7
     8        Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
     9
     10        * Source/cmake/OptionsGTK.cmake:
     11
    1122014-05-28  Jaehun Lim  <ljaehun.lim@samsung.com>
    213
  • trunk/Source/cmake/OptionsGTK.cmake

    r169416 r169418  
    261261endif ()
    262262
     263if (ENABLE_FTL_JIT)
     264    find_package(LLVM REQUIRED)
     265    find_package(LIBCXXABI REQUIRED)
     266    set(HAVE_LLVM ON)
     267endif ()
     268
    263269set(CPACK_SOURCE_GENERATOR TBZ2)
    264270
  • trunk/Tools/ChangeLog

    r169396 r169418  
     12014-05-28  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Make it possible to build with FTL enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=133219
     5
     6        Reviewed by Philippe Normand.
     7
     8        * gtk/jhbuild-optional.modules: Add llvm from svn and build the
     9        same revision than mac.
     10
    1112014-05-27  Michael Saboff  <msaboff@apple.com>
    212
  • trunk/Tools/gtk/jhbuild-optional.modules

    r155197 r169418  
    1010  <repository type="tarball" name="ftp.gnome.org"
    1111      href="http://ftp.gnome.org"/>
     12  <repository type="svn" name="llvm.org"
     13      href="http://llvm.org/svn/llvm-project/llvm/"/>
    1214
    1315  <autotools id="libsecret" autogen-sh="configure">
     
    4345  </autotools>
    4446
     47  <autotools id="llvm" autogenargs="--enable-optimized --disable-terminfo --disable-zlib">
     48    <branch repo="llvm.org" module="trunk" checkoutdir="llvm" version="r206311"
     49            revision="206311"/>
     50  </autotools>
     51
    4552</moduleset>
Note: See TracChangeset for help on using the changeset viewer.