Changeset 175455 in webkit


Ignore:
Timestamp:
Nov 1, 2014 7:31:12 PM (9 years ago)
Author:
ddkilzer@apple.com
Message:

JavaScriptCore is missing debug info for bmalloc because libbmalloc.a is stripped
<https://webkit.org/b/138286>
<rdar://problem/18847087>

Reviewed by Dan Bernstein.

  • Configurations/bmalloc.xcconfig: Set STRIP_INSTALLED_PRODUCT

to NO for the target that produces libbmalloc.a so that the
debug symbols will be linked into JavaScriptCore and end up in
its dSYM file.

Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r175397 r175455  
     12014-11-01  David Kilzer  <ddkilzer@apple.com>
     2
     3        JavaScriptCore is missing debug info for bmalloc because libbmalloc.a is stripped
     4        <https://webkit.org/b/138286>
     5        <rdar://problem/18847087>
     6
     7        Reviewed by Dan Bernstein.
     8
     9        * Configurations/bmalloc.xcconfig: Set STRIP_INSTALLED_PRODUCT
     10        to NO for the target that produces libbmalloc.a so that the
     11        debug symbols will be linked into JavaScriptCore and end up in
     12        its dSYM file.
     13
    1142014-10-30  Dana Burkart  <dburkart@apple.com>
    215
  • trunk/Source/bmalloc/Configurations/bmalloc.xcconfig

    r168152 r175455  
    3030
    3131GCC_SYMBOLS_PRIVATE_EXTERN = YES;
     32STRIP_INSTALLED_PRODUCT = NO;
Note: See TracChangeset for help on using the changeset viewer.