Changeset 35805 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 16, 2008, 10:06:18 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r35803 r35805 1 2008-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 1 10 2008-08-15 Mark Rowe <[email protected]> 2 11 -
trunk/JavaScriptCore/Configurations/Base.xcconfig
r35802 r35805 1 DEAD_CODE_STRIPPING = YES;2 1 DEBUG_INFORMATION_FORMAT = dwarf; 3 2 GCC_C_LANGUAGE_STANDARD = gnu99; … … 35 34 36 35 37 // DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL and STRIP_INSTALLED_PRODUCTvary 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. 38 37 // We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant. 39 38 DEBUG_DEFINES_debug = ; … … 48 47 STRIP_INSTALLED_PRODUCT_normal = YES; 49 48 STRIP_INSTALLED_PRODUCT_debug = NO; 49 50 DEAD_CODE_STRIPPING_debug = NO; 51 DEAD_CODE_STRIPPING_normal = YES; 52 DEAD_CODE_STRIPPING = $(DEAD_CODE_STRIPPING_$(CURRENT_VARIANT)); 50 53 51 54 -
trunk/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r35802 r35805 1986 1986 baseConfigurationReference = 1C9051440BA9E8A70081E9D0 /* DebugRelease.xcconfig */; 1987 1987 buildSettings = { 1988 DEAD_CODE_STRIPPING = "$(DEAD_CODE_STRIPPING_debug)"; 1988 1989 DEBUG_DEFINES = "$(DEBUG_DEFINES_debug)"; 1989 1990 GCC_OPTIMIZATION_LEVEL = "$(GCC_OPTIMIZATION_LEVEL_debug)";
Note:
See TracChangeset
for help on using the changeset viewer.