Changeset 163080 in webkit


Ignore:
Timestamp:
Jan 30, 2014 3:37:47 AM (10 years ago)
Author:
Csaba Osztrogonác
Message:

[EFL] Fix the regression caused by the jsCStack branch merge
https://bugs.webkit.org/show_bug.cgi?id=127898

Reviewed by Zoltan Herczeg.

  • Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r163072 r163080  
     12014-01-30  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] Fix the regression caused by the jsCStack branch merge
     4        https://bugs.webkit.org/show_bug.cgi?id=127898
     5
     6        Reviewed by Zoltan Herczeg.
     7
     8        * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
     9
    1102014-01-29  Csaba Osztrogonác  <ossy@webkit.org>
    211
  • trunk/Source/cmake/OptionsEfl.cmake

    r162782 r163080  
    267267endif ()
    268268
     269# push of rbp is needed after JSC JIT uses CStack
     270if (CMAKE_COMPILER_IS_GNUCC AND UNIX AND NOT APPLE)
     271    set(CMAKE_C_FLAGS_RELEASE "-fno-omit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}")
     272    set(CMAKE_CXX_FLAGS_RELEASE "-fno-omit-frame-pointer ${CMAKE_CXX_FLAGS_RELEASE}")
     273endif ()
     274
     275
    269276if (ENABLE_SPELLCHECK)
    270277    find_package(Enchant REQUIRED)
Note: See TracChangeset for help on using the changeset viewer.