Changeset 177290 in webkit


Ignore:
Timestamp:
Dec 15, 2014 10:58:32 AM (9 years ago)
Author:
bshafiei@apple.com
Message:

Merged r177254. rdar://problem/19189948

Location:
tags/Safari-600.3.12.1/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/Safari-600.3.12.1/Source/WebCore/ChangeLog

    r177109 r177290  
     12014-12-15  Babak Shafiei  <bshafiei@apple.com>
     2
     3        Merge r177254.
     4
     5    2014-12-12  Mark Rowe  <mrowe@apple.com>
     6
     7            [Mac] Work around a bug in dsymutil on older OS versions
     8            <https://webkit.org/b/139609> / <rdar://problem/16045763>
     9
     10            Older versions of dsymutil are unable to write out more than 2GB of symbols per architecture.
     11            WebCore has recently passed that threshold. To work around this we will reduce the level of
     12            symbols included in the dSYM bundles on the affected OS versions.
     13
     14            Reviewed by Geoff Garen.
     15
     16            * Configurations/Base.xcconfig: Include line tables only in the debug symbols for production
     17            builds on OS X 10.8 and 10.9.
     18            * Configurations/DebugRelease.xcconfig: Include full symbols in debug and release builds since they
     19            do not make use of dSYMs.
     20
    1212014-12-10  Matthew Hanson  <matthew_hanson@apple.com>
    222
  • tags/Safari-600.3.12.1/Source/WebCore/Configurations/Base.xcconfig

    r165677 r177290  
    118118
    119119GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
     120CLANG_DEBUG_INFORMATION_LEVEL[sdk=macosx10.8*] = line-tables-only;
     121CLANG_DEBUG_INFORMATION_LEVEL[sdk=macosx10.9*] = line-tables-only;
    120122
    121123SDKROOT = macosx.internal;
  • tags/Safari-600.3.12.1/Source/WebCore/Configurations/DebugRelease.xcconfig

    r165549 r177290  
    3838GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
    3939DEBUG_INFORMATION_FORMAT = dwarf;
     40CLANG_DEBUG_INFORMATION_LEVEL = default;
    4041
    4142SECTORDER_FLAGS = ;
Note: See TracChangeset for help on using the changeset viewer.