Title: [236897] trunk/Source/ThirdParty/libwebrtc
Revision
236897
Author
[email protected]
Date
2018-10-06 08:59:39 -0700 (Sat, 06 Oct 2018)

Log Message

Fixed iOS device production builds after r236896.

* Configurations/yasm.xcconfig: Excluding all sources when building for an iOS device meant
  that nothing got built, which caused the install action to fail when it tried to copy
  the built product. Just put things back the way they were for now.

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (236896 => 236897)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-10-06 14:41:35 UTC (rev 236896)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-10-06 15:59:39 UTC (rev 236897)
@@ -1,5 +1,13 @@
 2018-10-06  Dan Bernstein  <[email protected]>
 
+        Fixed iOS device production builds after r236896.
+
+        * Configurations/yasm.xcconfig: Excluding all sources when building for an iOS device meant
+          that nothing got built, which caused the install action to fail when it tried to copy
+          the built product. Just put things back the way they were for now.
+
+2018-10-06  Dan Bernstein  <[email protected]>
+
         [Xcode] Don’t install yasm and don’t compile it in iOS device builds
         https://bugs.webkit.org/show_bug.cgi?id=190326
 

Modified: trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig (236896 => 236897)


--- trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig	2018-10-06 14:41:35 UTC (rev 236896)
+++ trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig	2018-10-06 15:59:39 UTC (rev 236897)
@@ -18,4 +18,4 @@
 
 EXCLUDED_SOURCE_FILE_NAMES[sdk=macos*] = *_neon.c arm_cpudetect.c *_arm.c sad.c;
 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*] = *_neon.c arm_cpudetect.c *_arm.c sad.c;
-EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*] = *;
+EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*] = *_sse2.c *_ssse3.c *_sse4.c *_avx2.c *_avx.c *_sse2.asm.o *_sse3.asm.o;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to