Changeset 64008 in webkit


Ignore:
Timestamp:
Jul 24, 2010 5:54:38 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-24 Riccardo Magliocchetti <riccardo.magliocchetti@gmail.com>

Reviewed by Xan Lopez.

[GTK] Enable jit compilation on arm
https://bugs.webkit.org/show_bug.cgi?id=42856

Add missing bits to configure.ac to build the arm jit.
Compile and tested on debian sid armel on a qemu vm.

  • configure.ac:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r64005 r64008  
     12010-07-24  Riccardo Magliocchetti  <riccardo.magliocchetti@gmail.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Enable jit compilation on arm
     6        https://bugs.webkit.org/show_bug.cgi?id=42856
     7
     8        Add missing bits to configure.ac to build the arm jit.
     9        Compile and tested on debian sid armel on a qemu vm.
     10
     11        * configure.ac:
     12
    1132010-07-23  Rafael Antognolli  <antognolli@profusion.mobi>
    214
  • trunk/configure.ac

    r63117 r64008  
    678678if test "$enable_jit" = "yes"; then
    679679    case "$host_cpu" in
     680        arm*)
     681            AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
     682            AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
     683            AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
     684        ;;
    680685        i*86|x86_64)
    681686            AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
Note: See TracChangeset for help on using the changeset viewer.