Changeset 83495 in webkit


Ignore:
Timestamp:
Apr 11, 2011 2:11:56 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-11 Thouraya ANDOLSI <thouraya.andolsi@st.com>

Reviewed by Oliver Hunt.

SH4 JIT SUPPORT.
https://bugs.webkit.org/show_bug.cgi?id=44329

Enable JIT support for SH4 platforms.

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r83480 r83495  
     12011-04-11  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        SH4 JIT SUPPORT.
     6        https://bugs.webkit.org/show_bug.cgi?id=44329
     7
     8        Enable JIT support for SH4 platforms.
     9
     10        * configure.ac:
     11
    1122011-04-11  Andreas Kling  <andreas.kling@nokia.com>
    213
  • trunk/configure.ac

    r83342 r83495  
    806806            esac
    807807        ;;
     808        sh4)
     809            AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
     810            AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
     811            AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
     812            AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_REGISTER], [1], [Use stub register])
     813        ;;
    808814        *)
    809815            enable_jit="no (CPU '$host_cpu' not supported)"
     
    879885esac
    880886AC_MSG_RESULT([$with_font_backend])
     887
     888if test "$host_cpu" = "sh4"; then
     889   CXXFLAGS="$CXXFLAGS -mieee -w"
     890   CFLAGS="$CFLAGS -mieee -w"
     891fi
    881892
    882893# Add '-g' flag to gcc if it's debug build
Note: See TracChangeset for help on using the changeset viewer.