Changeset 35805 in webkit for trunk/JavaScriptCore


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:
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r35803 r35805  
     12008-08-16  Dan Bernstein  <[email protected]>
     2
     3        Reviewed by Geoffrey Garen.
     4
     5        Disable dead code stripping in debug builds.
     6
     7        * Configurations/Base.xcconfig:
     8        * JavaScriptCore.xcodeproj/project.pbxproj:
     9
    1102008-08-15  Mark Rowe  <[email protected]>
    211
  • 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
  • trunk/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r35802 r35805  
    19861986                        baseConfigurationReference = 1C9051440BA9E8A70081E9D0 /* DebugRelease.xcconfig */;
    19871987                        buildSettings = {
     1988                                DEAD_CODE_STRIPPING = "$(DEAD_CODE_STRIPPING_debug)";
    19881989                                DEBUG_DEFINES = "$(DEBUG_DEFINES_debug)";
    19891990                                GCC_OPTIMIZATION_LEVEL = "$(GCC_OPTIMIZATION_LEVEL_debug)";
Note: See TracChangeset for help on using the changeset viewer.