IOS Devtools.Core Framework pbxcp missing in Xcode?

I downloaded the Doomclassic source code and wanted to look at it. At first, I wanted to compile it to see if it really works. So I followed the instructions and copied the .wad files to the base folder, open the project and delete the compilation. Besides over 300 warnings and missing files (mostly images, which I mostly fix), I have a strange error during the compilation phase, and google doesn't help at all.

It says:

/Users/tobias/Library/Developer/Xcode/DerivedData/Doom-egfadrxunamfwjdsdaylawcyppkc/Build/Intermediates/Doom.build/Debug-iphonesimulator/Doom.build/Script -435F41A90F532CA300887552.Content/310X/Contacts52 /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp: There is no such file or directory

When I check my Xcode.app, the only structure in the PrivateFrameworks folder is IDEBundleInjection.framework

I also looked at the script:

! / bin / sh -x

PBXCP = $ {DEVELOPER_DIR} /Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp $ {PBXCP} -exclude.svn "$ {PROJECT_DIR} /../../ base" "$ {BUILT_PRODUCTS_DIR} / $ {UNLOCOURES} / "

It seems to me that I need this framework - but even with google I could not find it, and I would not know how to integrate it into the Xcode application? I upgraded Xcode to 4.4 just now, but it's still the same error.

Does anyone have any tips?

+4
source share
1 answer

The pbxcp command has been removed from Xcode 4.4, so you have to find a replacement for it. See this mailing list thread for alternatives to the team.

+3
source

All Articles