Title: [236896] trunk/Source/ThirdParty/libwebrtc
- Revision
- 236896
- Author
- [email protected]
- Date
- 2018-10-06 07:41:35 -0700 (Sat, 06 Oct 2018)
Log Message
[Xcode] Don’t install yasm and don’t compile it in iOS device builds
https://bugs.webkit.org/show_bug.cgi?id=190326
Reviewed by Youenn Fablet.
* Configurations/yasm.xcconfig: Set SKIP_INSTALL to YES, and excluded all source files when
targeting iOS devices.
Modified Paths
Diff
Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (236895 => 236896)
--- trunk/Source/ThirdParty/libwebrtc/ChangeLog 2018-10-06 13:57:16 UTC (rev 236895)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog 2018-10-06 14:41:35 UTC (rev 236896)
@@ -1,3 +1,13 @@
+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
+
+ Reviewed by Youenn Fablet.
+
+ * Configurations/yasm.xcconfig: Set SKIP_INSTALL to YES, and excluded all source files when
+ targeting iOS devices.
+
2018-10-04 Dan Bernstein <[email protected]>
Fixed engineering builds using the Apple internal SDK as well as building with older
Modified: trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig (236895 => 236896)
--- trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig 2018-10-06 13:57:16 UTC (rev 236895)
+++ trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig 2018-10-06 14:41:35 UTC (rev 236896)
@@ -2,7 +2,7 @@
HEADER_SEARCH_PATHS = Source/third_party/yasm-1.3.0;
-INSTALL_PATH = /usr/local/lib;
+SKIP_INSTALL = YES;
PUBLIC_HEADERS_FOLDER_PATH = /usr/local/include/libwebrtc;
USE_HEADERMAP = NO;
@@ -16,6 +16,6 @@
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
-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*] = *_sse2.c *_ssse3.c *_sse4.c *_avx2.c *_avx.c *_sse2.asm.o *_sse3.asm.o
+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*] = *;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes