Skip to content

Commit

Permalink
Merge r184857 - [ARM] Build SVGPathElement.cpp with -O2 due to a GCC bug
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=145377

Reviewed by Carlos Garcia Campos.

* CMakeLists.txt:
  • Loading branch information
ossy-szeged authored and carlosgcampos committed Jul 6, 2015
1 parent 6339dc7 commit fcc6a55
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/WebCore/CMakeLists.txt
Expand Up @@ -3514,3 +3514,9 @@ if (SHARED_CORE)
set_target_properties(WebCore PROPERTIES VERSION ${PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR})
install(TARGETS WebCore DESTINATION "${LIB_INSTALL_DIR}")
endif ()

# [ARM] Build SVGPathElement.cpp with -O2 due to a GCC bug
# https://bugs.webkit.org/show_bug.cgi?id=145377
if ((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"))
set_source_files_properties(svg/SVGPathElement.cpp PROPERTIES COMPILE_FLAGS "-O2")
endif ()
9 changes: 9 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,12 @@
2015-05-26 Csaba Osztrogonác <ossy@webkit.org>

[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:

2015-05-24 Sam Weinig <sam@webkit.org>

Crash when using a removed ScriptMessageHandler
Expand Down

0 comments on commit fcc6a55

Please sign in to comment.