- a/Source/WTF/ChangeLog +16 lines
Lines 1-3 a/Source/WTF/ChangeLog_sec1
1
2020-01-23  Keith Rollin  <krollin@apple.com>
2
3
        Fix internal Apple builds after r254411
4
        https://bugs.webkit.org/show_bug.cgi?id=206723
5
        <rdar://problem/58844735>
6
7
        Reviewed by NOBODY (OOPS!).
8
9
        The default Xcode build configuration has changed between macOS 10.13
10
        and macOS 10.15, such that references to some frameworks when bulding
11
        for the latter don't work when building for the former. Fix this by
12
        explicitly adding support for the desired build location rather than
13
        assuming such support will be provided for us.
14
15
        * Configurations/WTF.xcconfig:
16
1
2020-01-22  Yusuke Suzuki  <ysuzuki@apple.com>
17
2020-01-22  Yusuke Suzuki  <ysuzuki@apple.com>
2
18
3
        [JSC] DateMath should accept more ISO-8601 timezone designators even if they are not included in ECMA262 to produce expected results in the wild code
19
        [JSC] DateMath should accept more ISO-8601 timezone designators even if they are not included in ECMA262 to produce expected results in the wild code
- a/Source/WTF/Configurations/WTF.xcconfig +2 lines
Lines 31-33 STRIP_INSTALLED_PRODUCT = NO; a/Source/WTF/Configurations/WTF.xcconfig_sec1
31
EXCLUDED_SOURCE_FILE_NAMES_ = MachExceptions.defs
31
EXCLUDED_SOURCE_FILE_NAMES_ = MachExceptions.defs
32
EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = $(EXCLUDED_SOURCE_FILE_NAMES_$(USE_INTERNAL_SDK))
32
EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = $(EXCLUDED_SOURCE_FILE_NAMES_$(USE_INTERNAL_SDK))
33
EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator10*] =
33
EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator10*] =
34
35
SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) $(SDKROOT)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks

Return to Bug 206723