Changeset 236897 in webkit


Ignore:
Timestamp:
Oct 6, 2018, 8:59:39 AM (7 years ago)
Author:
mitz@apple.com
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.
Location:
trunk/Source/ThirdParty/libwebrtc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r236896 r236897  
     12018-10-06  Dan Bernstein  <mitz@apple.com>
     2
     3        Fixed iOS device production builds after r236896.
     4
     5        * Configurations/yasm.xcconfig: Excluding all sources when building for an iOS device meant
     6          that nothing got built, which caused the install action to fail when it tried to copy
     7          the built product. Just put things back the way they were for now.
     8
    192018-10-06  Dan Bernstein  <mitz@apple.com>
    210
  • trunk/Source/ThirdParty/libwebrtc/Configurations/yasm.xcconfig

    r236896 r236897  
    1919EXCLUDED_SOURCE_FILE_NAMES[sdk=macos*] = *_neon.c arm_cpudetect.c *_arm.c sad.c;
    2020EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*] = *_neon.c arm_cpudetect.c *_arm.c sad.c;
    21 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*] = *;
     21EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*] = *_sse2.c *_ssse3.c *_sse4.c *_avx2.c *_avx.c *_sse2.asm.o *_sse3.asm.o;
Note: See TracChangeset for help on using the changeset viewer.