Title: [111158] trunk/Tools
Revision
111158
Author
[email protected]
Date
2012-03-18 23:59:28 -0700 (Sun, 18 Mar 2012)

Log Message

[Qt] Unreviewed. Disable -Werror on x86 until proper fix.
https://bugs.webkit.org/show_bug.cgi?id=81498

* qmake/mkspecs/features/unix/default_post.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (111157 => 111158)


--- trunk/Tools/ChangeLog	2012-03-19 06:58:19 UTC (rev 111157)
+++ trunk/Tools/ChangeLog	2012-03-19 06:59:28 UTC (rev 111158)
@@ -1,3 +1,10 @@
+2012-03-18  Csaba Osztrogonác  <[email protected]>
+
+        [Qt] Unreviewed. Disable -Werror on x86 until proper fix.
+        https://bugs.webkit.org/show_bug.cgi?id=81498
+
+        * qmake/mkspecs/features/unix/default_post.prf:
+
 2012-03-17  Raphael Kubo da Costa  <[email protected]>
 
         Unreviewed; switch to using my FreeBSD.org email address, the

Modified: trunk/Tools/qmake/mkspecs/features/unix/default_post.prf (111157 => 111158)


--- trunk/Tools/qmake/mkspecs/features/unix/default_post.prf	2012-03-19 06:58:19 UTC (rev 111157)
+++ trunk/Tools/qmake/mkspecs/features/unix/default_post.prf	2012-03-19 06:59:28 UTC (rev 111158)
@@ -6,7 +6,8 @@
 
 # Treat warnings as errors on x86/Linux/GCC
 linux-g++* {
-    isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386) {
+    # Disable -Werror on x86 because of https://bugs.webkit.org/show_bug.cgi?id=81498
+    isEqual(QT_ARCH,x86_64) {
         # Disable -Werror for declarative stuff until we _require_ a Qt 5 with the new names.
         !contains(QT, declarative): QMAKE_CXXFLAGS += -Werror
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to