[webkit-changes] cvs commit: JavaScriptCore/JavaScriptCore.xcodeproj project.pbxproj

Timothy thatcher at opensource.apple.com
Wed Oct 26 13:23:21 PDT 2005


thatcher    05/10/26 13:23:18

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               JavaScriptCore.xcodeproj Tag: Safari-2-0-branch
                        project.pbxproj
  Added:       .        Tag: Safari-2-0-branch as gcc-path
  Log:
          - Fixed <rdar://problem/4306000> Mail and Safari will launch faster if JavaScriptCore
            has no weak exports (typeinfo for subclasses in WebCore)
  
          Reviewed by Darin.
  
          * as: Wrapper for the system assembler that supresses all type-info .weak_definition lines
          * gcc-path: small wrapper that sets the PATH before calling gcc, this makes gcc use our as
          * JavaScriptCore.xcodeproj/project.pbxproj:
            set CC and CPLUSPLUS to point to gcc-path only in Default configuration
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.677.6.50 +12 -0     JavaScriptCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
  retrieving revision 1.677.6.49
  retrieving revision 1.677.6.50
  diff -u -r1.677.6.49 -r1.677.6.50
  --- ChangeLog	21 Oct 2005 21:20:53 -0000	1.677.6.49
  +++ ChangeLog	26 Oct 2005 20:23:07 -0000	1.677.6.50
  @@ -1,3 +1,15 @@
  +2005-10-26  Timothy Hatcher  <timothy at apple.com>
  +
  +        - Fixed <rdar://problem/4306000> Mail and Safari will launch faster if JavaScriptCore
  +          has no weak exports (typeinfo for subclasses in WebCore)
  +
  +        Reviewed by Darin.
  +
  +        * as: Wrapper for the system assembler that supresses all type-info .weak_definition lines
  +        * gcc-path: small wrapper that sets the PATH before calling gcc, this makes gcc use our as
  +        * JavaScriptCore.xcodeproj/project.pbxproj: 
  +          set CC and CPLUSPLUS to point to gcc-path only in Default configuration
  +
   === JavaScriptCore-417.3 ===
   
   2005-10-17  Timothy Hatcher  <timothy at apple.com>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +11 -0     JavaScriptCore/Attic/as
  
  
  
  
  1.1.2.1   +3 -0      JavaScriptCore/Attic/gcc-path
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.14  +8 -0      JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
  
  Index: project.pbxproj
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj,v
  retrieving revision 1.2.2.13
  retrieving revision 1.2.2.14
  diff -u -r1.2.2.13 -r1.2.2.14
  --- project.pbxproj	6 Oct 2005 01:00:30 -0000	1.2.2.13
  +++ project.pbxproj	26 Oct 2005 20:23:16 -0000	1.2.2.14
  @@ -1179,6 +1179,8 @@
   		149C275E08902AFE008A9EFC /* Development */ = {
   			isa = XCBuildConfiguration;
   			buildSettings = {
  +				CC = "./gcc-path";
  +				CPLUSPLUS = "./gcc-path";
   				DEBUG_DEFINES = "";
   				DYLIB_COMPATIBILITY_VERSION = 1;
   				DYLIB_CURRENT_VERSION = 1;
  @@ -1232,6 +1234,8 @@
   		149C275F08902AFE008A9EFC /* Deployment */ = {
   			isa = XCBuildConfiguration;
   			buildSettings = {
  +				CC = "./gcc-path";
  +				CPLUSPLUS = "./gcc-path";
   				DEBUG_DEFINES = NDEBUG;
   				DYLIB_COMPATIBILITY_VERSION = 1;
   				DYLIB_CURRENT_VERSION = 1;
  @@ -1286,6 +1290,8 @@
   		149C276008902AFE008A9EFC /* OptimizedWithSymbols */ = {
   			isa = XCBuildConfiguration;
   			buildSettings = {
  +				CC = "./gcc-path";
  +				CPLUSPLUS = "./gcc-path";
   				DEBUG_DEFINES = NDEBUG;
   				DYLIB_COMPATIBILITY_VERSION = 1;
   				DYLIB_CURRENT_VERSION = 1;
  @@ -1340,6 +1346,8 @@
   		149C276108902AFE008A9EFC /* Default */ = {
   			isa = XCBuildConfiguration;
   			buildSettings = {
  +				CC = "./gcc-path";
  +				CPLUSPLUS = "./gcc-path";
   				DEBUG_DEFINES = NDEBUG;
   				DYLIB_COMPATIBILITY_VERSION = 1;
   				DYLIB_CURRENT_VERSION = 1;
  
  
  



More information about the webkit-changes mailing list