⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 263828 in webkit


Ignore:
Timestamp:
Jul 1, 2020, 6:26:22 PM (6 years ago)
Author:
timothy_horton@apple.com
Message:

Fix the arm64 iOS simulator build
https://bugs.webkit.org/show_bug.cgi?id=213868
<rdar://problem/64901603>

  • Configurations/libvpx.xcconfig:
  • Configurations/libwebrtc.xcconfig:
Location:
trunk/Source/ThirdParty/libwebrtc
Files:
3 edited

Legend:

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

    r263820 r263828  
     12020-07-01  Tim Horton  <timothy_horton@apple.com>
     2
     3        Fix the arm64 iOS simulator build
     4        https://bugs.webkit.org/show_bug.cgi?id=213868
     5        <rdar://problem/64901603>
     6
     7        * Configurations/libvpx.xcconfig:
     8        * Configurations/libwebrtc.xcconfig:
     9
    1102020-07-01  Youenn Fablet  <youenn@apple.com>
    211
  • trunk/Source/ThirdParty/libwebrtc/Configurations/libvpx.xcconfig

    r263820 r263828  
    2020X86_FILES = *_sse2.c *_ssse3.c *_sse4.c *_avx2.c *_avx.c *.asm
    2121
    22 EXCLUDED_SOURCE_FILE_NAMES[sdk=macos*][arch=x86_64] = $(ARM_FILES)
    23 EXCLUDED_SOURCE_FILE_NAMES[sdk=macos*][arch=arm64*] = $(X86_FILES) *_mmx.c
    24 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*][arch=arm64*] = $(X86_FILES) *_mmx.c
    25 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*] = $(X86_FILES) $(ARM_FILES)
     22EXCLUDED_SOURCE_FILE_NAMES[arch=x86_64] = $(ARM_FILES)
     23EXCLUDED_SOURCE_FILE_NAMES[arch=arm64*] = $(X86_FILES) *_mmx.c
     24EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*][arch=x86_64] = $(ARM_FILES) $(X86_FILES)
  • trunk/Source/ThirdParty/libwebrtc/Configurations/libwebrtc.xcconfig

    r263734 r263828  
    3939EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*] = $(EXCLUDED_SOURCE_FILE_NAMES_ios) $(EXCLUDED_SOURCE_FILE_NAMES_arm);
    4040EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*] = $(EXCLUDED_SOURCE_FILE_NAMES_ios);
     41EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*][arch=arm64*] = $(EXCLUDED_SOURCE_FILE_NAMES_ios) $(EXCLUDED_SOURCE_FILE_NAMES_arm);
    4142EXCLUDED_SOURCE_FILE_NAMES[sdk=macosx*] = $(EXCLUDED_SOURCE_FILE_NAMES_macosx);
    4243EXCLUDED_SOURCE_FILE_NAMES[sdk=macosx*][arch=arm64*] = $(EXCLUDED_SOURCE_FILE_NAMES_macosx) $(EXCLUDED_SOURCE_FILE_NAMES_arm);
Note: See TracChangeset for help on using the changeset viewer.