Title: [190584] trunk/Tools
Revision
190584
Author
[email protected]
Date
2015-10-05 15:35:54 -0700 (Mon, 05 Oct 2015)

Log Message

Disable Bitcode when building for iOS device
https://bugs.webkit.org/show_bug.cgi?id=149818

Reviewed by Alexey Proskuryakov.

Xcode 7 generates bitcode for iOS device apps by default. Do not generate bitcode
when building for iOS device.

* Scripts/webkitdirs.pm:
(XcodeOptions):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (190583 => 190584)


--- trunk/Tools/ChangeLog	2015-10-05 22:30:11 UTC (rev 190583)
+++ trunk/Tools/ChangeLog	2015-10-05 22:35:54 UTC (rev 190584)
@@ -1,5 +1,18 @@
 2015-10-05  Daniel Bates  <[email protected]>
 
+        Disable Bitcode when building for iOS device
+        https://bugs.webkit.org/show_bug.cgi?id=149818
+
+        Reviewed by Alexey Proskuryakov.
+
+        Xcode 7 generates bitcode for iOS device apps by default. Do not generate bitcode
+        when building for iOS device.
+
+        * Scripts/webkitdirs.pm:
+        (XcodeOptions):
+
+2015-10-05  Daniel Bates  <[email protected]>
+
         [iOS] Make it possible to build WebKit using iphoneos SDK without a developer certificate installed
         https://bugs.webkit.org/show_bug.cgi?id=140828
         <rdar://problem/19520599>

Modified: trunk/Tools/Scripts/webkitdirs.pm (190583 => 190584)


--- trunk/Tools/Scripts/webkitdirs.pm	2015-10-05 22:30:11 UTC (rev 190583)
+++ trunk/Tools/Scripts/webkitdirs.pm	2015-10-05 22:35:54 UTC (rev 190584)
@@ -690,6 +690,7 @@
     push @options, "ARCHS=$architecture" if $architecture;
     push @options, "SDKROOT=$xcodeSDK" if $xcodeSDK;
     if (willUseIOSDeviceSDKWhenBuilding()) {
+        push @options, "ENABLE_BITCODE=NO";
         if (hasIOSDevelopmentCertificate()) {
             # FIXME: May match more than one installed development certificate.
             push @options, "CODE_SIGN_IDENTITY=" . IOS_DEVELOPMENT_CERTIFICATE_NAME_PREFIX;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to