Title: [179113] trunk
Revision
179113
Author
o...@webkit.org
Date
2015-01-26 07:15:27 -0800 (Mon, 26 Jan 2015)

Log Message

[cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
https://bugs.webkit.org/show_bug.cgi?id=140886

Reviewed by Žan Doberšek.

* Source/cmake/WebKitHelpers.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (179112 => 179113)


--- trunk/ChangeLog	2015-01-26 13:49:17 UTC (rev 179112)
+++ trunk/ChangeLog	2015-01-26 15:15:27 UTC (rev 179113)
@@ -1,3 +1,12 @@
+2015-01-26  Csaba Osztrogonác  <o...@webkit.org>
+
+        [cmake] Stop compiling with -Wno-error=uninitialized and -Wno-error=literal-suffix
+        https://bugs.webkit.org/show_bug.cgi?id=140886
+
+        Reviewed by Žan Doberšek.
+
+        * Source/cmake/WebKitHelpers.cmake:
+
 2015-01-26  Michael Catanzaro  <mcatanz...@igalia.com>
 
         [GTK] gtkdoc does not appear in DevHelp

Modified: trunk/Source/cmake/WebKitHelpers.cmake (179112 => 179113)


--- trunk/Source/cmake/WebKitHelpers.cmake	2015-01-26 13:49:17 UTC (rev 179112)
+++ trunk/Source/cmake/WebKitHelpers.cmake	2015-01-26 15:15:27 UTC (rev 179113)
@@ -30,9 +30,7 @@
 
         # Enable errors on warning
         if (OPTION_ENABLE_WERROR)
-            # FIXME: When we use -fno-tree-dce to support the jsCStack branch merge, build error occurs due to the uninitialization. Temporarily we set
-            # uninitialized as build warning in order to support the jsCStack merge. https://bugs.webkit.org/show_bug.cgi?id=127777.
-            set(OLD_COMPILE_FLAGS "-Werror -Wno-error=unused-parameter -Wno-error=uninitialized -Wno-error=literal-suffix ${OLD_COMPILE_FLAGS}")
+            set(OLD_COMPILE_FLAGS "-Werror -Wno-error=unused-parameter ${OLD_COMPILE_FLAGS}")
         endif ()
 
         set_target_properties(${_target} PROPERTIES
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to