Title: [190801] trunk/Tools
Revision
190801
Author
dba...@webkit.org
Date
2015-10-09 08:55:29 -0700 (Fri, 09 Oct 2015)

Log Message

Make iOS builders generate debug information in a separate dSYM file
https://bugs.webkit.org/show_bug.cgi?id=149696

Reviewed by Darin Adler.

Similar to the Mac builders, the iOS builders should write debug information
into a separate dSYM file instead of including such information in the binary
itself (default Xcode behavior)

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(CompileWebKit.start):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (190800 => 190801)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2015-10-09 15:18:42 UTC (rev 190800)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2015-10-09 15:55:29 UTC (rev 190801)
@@ -213,7 +213,7 @@
             self.setCommand(self.command + ['ARCHS=' + architecture])
             if platform == 'ios':
                 self.setCommand(self.command + ['_ONLY_ACTIVE_ARCH_=NO'])
-        if platform == 'mac' and buildOnly:
+        if platform in ('mac', 'ios') and buildOnly:
             self.setCommand(self.command + ['DEBUG_INFORMATION_FORMAT=dwarf-with-dsym'])
 
         appendCustomBuildFlags(self, platform, self.getProperty('fullPlatform'))

Modified: trunk/Tools/ChangeLog (190800 => 190801)


--- trunk/Tools/ChangeLog	2015-10-09 15:18:42 UTC (rev 190800)
+++ trunk/Tools/ChangeLog	2015-10-09 15:55:29 UTC (rev 190801)
@@ -1,3 +1,17 @@
+2015-10-09  Daniel Bates  <daba...@apple.com>
+
+        Make iOS builders generate debug information in a separate dSYM file
+        https://bugs.webkit.org/show_bug.cgi?id=149696
+
+        Reviewed by Darin Adler.
+
+        Similar to the Mac builders, the iOS builders should write debug information
+        into a separate dSYM file instead of including such information in the binary
+        itself (default Xcode behavior)
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (CompileWebKit.start):
+
 2015-10-09  Csaba Osztrogonác  <o...@webkit.org>
 
         Fix webkitpy tests after r190779
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to