Ignore:
Timestamp:
May 19, 2005, 2:57:36 PM (20 years ago)
Author:
darin
Message:

JavaScriptCore:

Reviewed by Maciej.

  • turned off exceptions and RTTI; seems to cut JavaScriptCore code size by about 22%
  • JavaScriptCore.pbproj/project.pbxproj: Turn off exceptions and RTTI for both the framework and testkjs tool.

WebCore:

Reviewed by Maciej.

  • turned off exceptions and RTTI; seems to cut WebCore code size by about 35%
  • WebCore.pbproj/project.pbxproj: Turn off exceptions and RTTI for the framework.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj

    r9107 r9182  
    10151015                                DYLIB_COMPATIBILITY_VERSION = 1;
    10161016                                DYLIB_CURRENT_VERSION = 1;
     1017                                GCC_ENABLE_CPP_EXCEPTIONS = NO;
     1018                                GCC_ENABLE_CPP_RTTI = NO;
    10171019                                GCC_ENABLE_OBJC_GC = YES;
    10181020                                GCC_FAST_OBJC_DISPATCH = YES;
     
    22022204                        );
    22032205                        buildSettings = {
     2206                                GCC_ENABLE_CPP_EXCEPTIONS = NO;
     2207                                GCC_ENABLE_CPP_RTTI = NO;
    22042208                                GCC_TREAT_WARNINGS_AS_ERRORS = YES;
    22052209                                PRODUCT_NAME = testkjs;
Note: See TracChangeset for help on using the changeset viewer.