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

Changeset 263866 in webkit


Ignore:
Timestamp:
Jul 2, 2020, 3:36:26 PM (6 years ago)
Author:
Alan Coon
Message:

Cherry-pick r263828. rdar://problem/64901603

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

  • Configurations/libvpx.xcconfig:
  • Configurations/libwebrtc.xcconfig:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@263828 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-610.1.20-branch/Source/ThirdParty/libwebrtc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-610.1.20-branch/Source/ThirdParty/libwebrtc/ChangeLog

    r263453 r263866  
     12020-07-02  Alan Coon  <alancoon@apple.com>
     2
     3        Cherry-pick r263828. rdar://problem/64901603
     4
     5    Fix the arm64 iOS simulator build
     6    https://bugs.webkit.org/show_bug.cgi?id=213868
     7    <rdar://problem/64901603>
     8   
     9    * Configurations/libvpx.xcconfig:
     10    * Configurations/libwebrtc.xcconfig:
     11   
     12    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@263828 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     13
     14    2020-07-01  Tim Horton  <timothy_horton@apple.com>
     15
     16            Fix the arm64 iOS simulator build
     17            https://bugs.webkit.org/show_bug.cgi?id=213868
     18            <rdar://problem/64901603>
     19
     20            * Configurations/libvpx.xcconfig:
     21            * Configurations/libwebrtc.xcconfig:
     22
    1232020-06-24  Youenn Fablet  <youenn@apple.com>
    224
  • branches/safari-610.1.20-branch/Source/ThirdParty/libwebrtc/Configurations/libvpx.xcconfig

    r263375 r263866  
    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) sad.c
    23 EXCLUDED_SOURCE_FILE_NAMES[sdk=macos*][arch=arm64*] = $(X86_FILES)
    24 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*][arch=arm64*] = $(X86_FILES)
    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)
  • branches/safari-610.1.20-branch/Source/ThirdParty/libwebrtc/Configurations/libwebrtc.xcconfig

    r263375 r263866  
    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.