Title: [148744] trunk/Tools
Revision
148744
Author
[email protected]
Date
2013-04-19 07:32:51 -0700 (Fri, 19 Apr 2013)

Log Message

[Qt] Only use thin archives on Linux

Rubber-stamped by Jocelyn Turcotte.

Since "thin archive" is a feature of GNU's ar
we limit the usage to Linux to avoid problems
with other configurations (eg. macx-g++).

* qmake/mkspecs/features/default_pre.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (148743 => 148744)


--- trunk/Tools/ChangeLog	2013-04-19 13:54:27 UTC (rev 148743)
+++ trunk/Tools/ChangeLog	2013-04-19 14:32:51 UTC (rev 148744)
@@ -1,3 +1,15 @@
+2013-04-19  Andras Becsi  <[email protected]>
+
+        [Qt] Only use thin archives on Linux
+
+        Rubber-stamped by Jocelyn Turcotte.
+
+        Since "thin archive" is a feature of GNU's ar
+        we limit the usage to Linux to avoid problems
+        with other configurations (eg. macx-g++).
+
+        * qmake/mkspecs/features/default_pre.prf:
+
 2013-04-19  Krzysztof Czech  <[email protected]>
 
         [GTK][WK2] accessibility/language-attribute.html is failing

Modified: trunk/Tools/qmake/mkspecs/features/default_pre.prf (148743 => 148744)


--- trunk/Tools/qmake/mkspecs/features/default_pre.prf	2013-04-19 13:54:27 UTC (rev 148743)
+++ trunk/Tools/qmake/mkspecs/features/default_pre.prf	2013-04-19 14:32:51 UTC (rev 148744)
@@ -88,7 +88,8 @@
 # used by bots and developers, will disable it, to enable warnings etc.
 CONFIG += production_build
 
-!debug_and_release:*-g++*: CONFIG += gnu_thin_archives
+# Limit the creation of thin archives to Linux, since only GNU's ar supports it.
+!debug_and_release:linux-g++*: CONFIG += gnu_thin_archives
 
 # Pick up Qt's defaults for debug/release/debug_and_release
 if(win32|mac):!macx-xcode {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to