diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-07 23:55:47 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-07 23:55:47 +0000 |
commit | a6879a7486c9a3c9b619f9dded1d535e734c7fcd (patch) | |
tree | 9c19a3eef8eb73b3a4307969122dcf9a20bfe6ef /third_party | |
parent | 83c6bda785fa8fffa47bf2af47513d9bd399e7ca (diff) | |
download | chromium_src-a6879a7486c9a3c9b619f9dded1d535e734c7fcd.zip chromium_src-a6879a7486c9a3c9b619f9dded1d535e734c7fcd.tar.gz chromium_src-a6879a7486c9a3c9b619f9dded1d535e734c7fcd.tar.bz2 |
Dramatically improve the link time in release mode. Today's MC Hammer Xcode
Voodoo lesson: don't use the slow dsymutil utility; instead, make a "fake"
.dSYM that contains the original unstripped Mach-O file.
Review URL: http://codereview.chromium.org/9659
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/libxml/libxml.xcodeproj/project.pbxproj | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/third_party/libxml/libxml.xcodeproj/project.pbxproj b/third_party/libxml/libxml.xcodeproj/project.pbxproj index 428693c..c191ee0 100644 --- a/third_party/libxml/libxml.xcodeproj/project.pbxproj +++ b/third_party/libxml/libxml.xcodeproj/project.pbxproj @@ -584,6 +584,7 @@ buildPhases = ( 7B12F54B0D8EE8E400CB6E8F /* Sources */, 7B12F54C0D8EE8E400CB6E8F /* Frameworks */, + 4D3D54570EC3A4AA00650CA0 /* Strip If Needed */, ); buildRules = ( ); @@ -604,6 +605,7 @@ buildPhases = ( 7B12F58C0D8EEB2F00CB6E8F /* Sources */, 7B12F58D0D8EEB2F00CB6E8F /* Frameworks */, + 4D3D54590EC3A4B700650CA0 /* Strip If Needed */, ); buildRules = ( ); @@ -710,6 +712,36 @@ /* End PBXReferenceProxy section */ /* Begin PBXShellScriptBuildPhase section */ + 4D3D54570EC3A4AA00650CA0 /* Strip If Needed */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Strip If Needed"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "exec \"${XCODEPROJ_DEPTH}/build/mac/strip_from_xcode\"\n"; + showEnvVarsInLog = 0; + }; + 4D3D54590EC3A4B700650CA0 /* Strip If Needed */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Strip If Needed"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "exec \"${XCODEPROJ_DEPTH}/build/mac/strip_from_xcode\"\n"; + showEnvVarsInLog = 0; + }; 7BE970520D872DC200F86D4B /* Pre-Build */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; |