Show
Ignore:
Timestamp:
08/18/08 11:14:49 (5 months ago)
Author:
odole
Message:

merge with webkit revision 35814

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/Configurations/Base.xcconfig

    r388 r440  
    1 DEAD_CODE_STRIPPING = YES; 
    21DEBUG_INFORMATION_FORMAT = dwarf; 
    32GCC_C_LANGUAGE_STANDARD = gnu99; 
     
    1211GCC_INLINES_ARE_PRIVATE_EXTERN = YES; 
    1312GCC_MODEL_TUNING = G5; 
    14 GCC_OPTIMIZATION_LEVEL = 3; 
    1513GCC_PRECOMPILE_PREFIX_HEADER = YES; 
    1614GCC_PREPROCESSOR_DEFINITIONS = $(DEBUG_DEFINES) WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST $(GCC_PREPROCESSOR_DEFINITIONS); 
     
    3533HEADER_SEARCH_PATHS = . icu $(HEADER_SEARCH_PATHS); 
    3634 
     35 
     36// DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants. 
     37// We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant. 
     38DEBUG_DEFINES_debug = ; 
     39DEBUG_DEFINES_normal = NDEBUG; 
     40DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT)); 
     41 
     42GCC_OPTIMIZATION_LEVEL = $(GCC_OPTIMIZATION_LEVEL_$(CURRENT_VARIANT)); 
     43GCC_OPTIMIZATION_LEVEL_normal = 3; 
     44GCC_OPTIMIZATION_LEVEL_debug = 0; 
     45 
     46STRIP_INSTALLED_PRODUCT = $(STRIP_INSTALLED_PRODUCT_$(CURRENT_VARIANT)); 
     47STRIP_INSTALLED_PRODUCT_normal = YES; 
     48STRIP_INSTALLED_PRODUCT_debug = NO; 
     49 
     50DEAD_CODE_STRIPPING_debug = NO; 
     51DEAD_CODE_STRIPPING_normal = YES; 
     52DEAD_CODE_STRIPPING = $(DEAD_CODE_STRIPPING_$(CURRENT_VARIANT)); 
     53 
     54 
    3755// <rdar://problem/5488678>: Production builds on 10.4 PowerPC need to have debugging symbols disabled to prevent a huge STABS section being generated. 
    3856//                           Xcode on 10.4 does not define MAC_OS_X_VERSION_MAJOR, so the default Mac OS X version is treated as 10.4.