Title: [184857] trunk/Source/WebCore
Revision
184857
Author
o...@webkit.org
Date
2015-05-26 04:53:15 -0700 (Tue, 26 May 2015)

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (184856 => 184857)


--- trunk/Source/WebCore/CMakeLists.txt	2015-05-26 11:26:51 UTC (rev 184856)
+++ trunk/Source/WebCore/CMakeLists.txt	2015-05-26 11:53:15 UTC (rev 184857)
@@ -3573,3 +3573,9 @@
     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 ()

Modified: trunk/Source/WebCore/ChangeLog (184856 => 184857)


--- trunk/Source/WebCore/ChangeLog	2015-05-26 11:26:51 UTC (rev 184856)
+++ trunk/Source/WebCore/ChangeLog	2015-05-26 11:53:15 UTC (rev 184857)
@@ -1,3 +1,12 @@
+2015-05-26  Csaba Osztrogonác  <o...@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-25  Dan Bernstein  <m...@apple.com>
 
         Fixed a failing bindings test after r184853.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to