Title: [129115] trunk/Tools
Revision
129115
Author
[email protected]
Date
2012-09-20 04:06:35 -0700 (Thu, 20 Sep 2012)

Log Message

[Qt] Fix build with MingW

Reviewed by Tor Arne Vestbø.

Don't try to compile WebCore, etc. with debug symbols for production
builds, it's just too big.

* qmake/mkspecs/features/production_build.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (129114 => 129115)


--- trunk/Tools/ChangeLog	2012-09-20 10:54:49 UTC (rev 129114)
+++ trunk/Tools/ChangeLog	2012-09-20 11:06:35 UTC (rev 129115)
@@ -1,3 +1,14 @@
+2012-09-20  Simon Hausmann  <[email protected]>
+
+        [Qt] Fix build with MingW
+
+        Reviewed by Tor Arne Vestbø.
+
+        Don't try to compile WebCore, etc. with debug symbols for production
+        builds, it's just too big.
+
+        * qmake/mkspecs/features/production_build.prf:
+
 2012-09-20  Michał Pakuła vel Rutka  <[email protected]>
 
         [EFL][DRT]DumpRenderTree needs to reset focus state when test starts.

Modified: trunk/Tools/qmake/mkspecs/features/production_build.prf (129114 => 129115)


--- trunk/Tools/qmake/mkspecs/features/production_build.prf	2012-09-20 10:54:49 UTC (rev 129114)
+++ trunk/Tools/qmake/mkspecs/features/production_build.prf	2012-09-20 11:06:35 UTC (rev 129115)
@@ -7,7 +7,7 @@
 # resulting in the need of several gigabytes of memory at link-time. Reduce the pressure
 # by compiling any static library like WTF or JSC with release flags instead and keep debug
 # symbols for the static libraries that implement API.
-linux-*:CONFIG(debug, debug|release):contains(TEMPLATE, lib):staticlib {
+linux-*|win32-g++*:CONFIG(debug, debug|release):contains(TEMPLATE, lib):staticlib {
     !equals(TARGET, WebKit2):!equals(TARGET, WebKit1) {
         CONFIG += no_debug_info
         QMAKE_CFLAGS += $$QMAKE_CFLAGS_RELEASE
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to