Changeset 35805 in webkit for trunk/JavaScriptCore/Configurations
- Timestamp:
- Aug 16, 2008, 10:06:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.