Title: [164098] trunk
Revision
164098
Author
[email protected]
Date
2014-02-14 03:38:52 -0800 (Fri, 14 Feb 2014)

Log Message

Unreviewed, rolling out r164090.
http://trac.webkit.org/changeset/164090
https://bugs.webkit.org/show_bug.cgi?id=128807

It broke the EFL build (Requested by Ossy on #webkit).

* Source/cmake/OptionsCommon.cmake:
* Source/cmake/OptionsEfl.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (164097 => 164098)


--- trunk/ChangeLog	2014-02-14 11:14:56 UTC (rev 164097)
+++ trunk/ChangeLog	2014-02-14 11:38:52 UTC (rev 164098)
@@ -1,3 +1,14 @@
+2014-02-14  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r164090.
+        http://trac.webkit.org/changeset/164090
+        https://bugs.webkit.org/show_bug.cgi?id=128807
+
+        It broke the EFL build (Requested by Ossy on #webkit).
+
+        * Source/cmake/OptionsCommon.cmake:
+        * Source/cmake/OptionsEfl.cmake:
+
 2014-02-09  Martin Robinson  <[email protected]>
 
         [GTK] [CMake] _javascript_Core crashes in JSC::eval

Modified: trunk/Source/cmake/OptionsCommon.cmake (164097 => 164098)


--- trunk/Source/cmake/OptionsCommon.cmake	2014-02-14 11:14:56 UTC (rev 164097)
+++ trunk/Source/cmake/OptionsCommon.cmake	2014-02-14 11:38:52 UTC (rev 164098)
@@ -19,12 +19,6 @@
     set(CODE_GENERATOR_PREPROCESSOR_WITH_LINEMARKERS "${CMAKE_CXX_COMPILER} -E -x c++")
 endif ()
 
-# Push of rbp is needed after JSC JIT uses CStack. See http://wkbug.com/127777.
-if (CMAKE_COMPILER_IS_GNUCC AND UNIX AND NOT APPLE)
-    set(CMAKE_C_FLAGS_RELEASE "-fno-omit-frame-pointer -fno-tree-dce ${CMAKE_C_FLAGS_RELEASE}")
-    set(CMAKE_CXX_FLAGS_RELEASE "-fno-omit-frame-pointer -fno-tree-dce ${CMAKE_CXX_FLAGS_RELEASE}")
-endif ()
-
 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
 
 if (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")

Modified: trunk/Source/cmake/OptionsEfl.cmake (164097 => 164098)


--- trunk/Source/cmake/OptionsEfl.cmake	2014-02-14 11:14:56 UTC (rev 164097)
+++ trunk/Source/cmake/OptionsEfl.cmake	2014-02-14 11:38:52 UTC (rev 164098)
@@ -262,6 +262,13 @@
     set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "-Wl,--gc-sections ${CMAKE_SHARED_LINKER_FLAGS_RELEASE}")
 endif ()
 
+# push of rbp is needed after JSC JIT uses CStack
+if (CMAKE_COMPILER_IS_GNUCC AND UNIX AND NOT APPLE)
+    set(CMAKE_C_FLAGS_RELEASE "-fno-omit-frame-pointer ${CMAKE_C_FLAGS_RELEASE}")
+    set(CMAKE_CXX_FLAGS_RELEASE "-fno-omit-frame-pointer ${CMAKE_CXX_FLAGS_RELEASE}")
+endif ()
+
+
 if (ENABLE_SPELLCHECK)
     find_package(Enchant REQUIRED)
 endif ()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to