Changeset 35805 in webkit for trunk/JavaScriptCore/Configurations


Ignore:
Timestamp:
Aug 16, 2008, 10:06:18 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Geoffrey Garen.

Disable dead code stripping in debug builds.

  • Configurations/Base.xcconfig:
  • JavaScriptCore.xcodeproj/project.pbxproj:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/Configurations/Base.xcconfig

    r35802 r35805  
    1 DEAD_CODE_STRIPPING = YES;
    21DEBUG_INFORMATION_FORMAT = dwarf;
    32GCC_C_LANGUAGE_STANDARD = gnu99;
     
    3534
    3635
    37 // DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL and STRIP_INSTALLED_PRODUCT vary between the debug and normal variants.
     36// DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants.
    3837// We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant.
    3938DEBUG_DEFINES_debug = ;
     
    4847STRIP_INSTALLED_PRODUCT_normal = YES;
    4948STRIP_INSTALLED_PRODUCT_debug = NO;
     49
     50DEAD_CODE_STRIPPING_debug = NO;
     51DEAD_CODE_STRIPPING_normal = YES;
     52DEAD_CODE_STRIPPING = $(DEAD_CODE_STRIPPING_$(CURRENT_VARIANT));
    5053
    5154
Note: See TracChangeset for help on using the changeset viewer.