Changeset 184857 in webkit


Ignore:
Timestamp:
May 26, 2015 4:53:15 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[ARM] Build SVGPathElement.cpp with -O2 due to a GCC bug
https://bugs.webkit.org/show_bug.cgi?id=145377

Reviewed by Carlos Garcia Campos.

  • CMakeLists.txt:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r184616 r184857  
    35743574    install(TARGETS WebCore DESTINATION "${LIB_INSTALL_DIR}")
    35753575endif ()
     3576
     3577# [ARM] Build SVGPathElement.cpp with -O2 due to a GCC bug
     3578# https://bugs.webkit.org/show_bug.cgi?id=145377
     3579if ((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND WTF_CPU_ARM AND (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.9") AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9.3"))
     3580    set_source_files_properties(svg/SVGPathElement.cpp PROPERTIES COMPILE_FLAGS "-O2")
     3581endif ()
  • trunk/Source/WebCore/ChangeLog

    r184854 r184857  
     12015-05-26  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [ARM] Build SVGPathElement.cpp with -O2 due to a GCC bug
     4        https://bugs.webkit.org/show_bug.cgi?id=145377
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * CMakeLists.txt:
     9
    1102015-05-25  Dan Bernstein  <mitz@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.