xcode内部错误“事件流

时间:2010-07-14 19:03:46

标签: xcode xcodebuild xcode3.2

当我打开这个xcode项目时出现以下错误

xocde startup error http://i30.tinypic.com/2vwvayo.jpg

我也试过从命令行执行“xcodebuild -activetarget -configuration Debug”,我得到了与堆栈跟踪相同的错误

2010-07-14 12:55 xcodebuild[4991] (CarbonCore.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-21)
** INTERNAL ERROR: Uncaught Exception **
Exception: The event stream <DTFileSystemEventStream: 0x11497dfb0> could not be started.
Stack:
  0  0x00007fff87af6d06 __exceptionPreprocess (in CoreFoundation)
  1  0x00007fff806c90f3 objc_exception_throw (in libobjc.A.dylib)
  2  0x000000010002a3b6 -[DTFileSystemEventStream start] (in DevToolsFoundation)
  3  0x000000010014ef73 -[XCFileSystemWatcher registerWatcher:forPaths:] (in DevToolsCore)
  4  0x000000010016e24b -[PBXTargetBuildContext(DependencyGraphEvents) setTargetSnapshot:] (in DevToolsCore)
  5  0x000000010016476f -[PBXTarget propagateTargetSnapshotIfNeeded] (in DevToolsCore)
  6  0x00000001001f2a2a -[PBXTarget(XCBuildables) prepareForBuildingWithBuildOperation:] (in DevToolsCore)
  7  0x0000000100351725 -[XCBuildOperation _setupBeforeRunning] (in DevToolsCore)
  8  0x00000001001f1923 -[XCBuildOperation setupBeforeRunning] (in DevToolsCore)
  9  0x00000001000076fa
 10  0x00000001001f1300 -[XCOperation run] (in DevToolsCore)
 11  0x00000001001f0c1f -[XCOperation runWhenReady] (in DevToolsCore)
 12  0x00000001001f0ba0 -[XCBuildOperation runWhenReady] (in DevToolsCore)
 13  0x0000000100008760
 14  0x000000010000bfac
 15  0x0000000100001b7c
 16  0x0000000000000004

我无法做任何事情,我尝试过清洁,建筑,任何想法?????

1 个答案:

答案 0 :(得分:1)

在雪豹更新安装后,我似乎得到了这个错误,这令人非常沮丧。发生的事情是CarbonCore函数FSEventStreamStart正在对fsevenstd进程进行rpc调用,以监视特定目录中的更改。如果你在尝试运行Xcode时tail -f /var/log/system.log,你可能会看到如下内容:

fseventsd [151]:implementation_added_client:无法为路径添加客户端

我做的是进入我的project.pbxproj并从文件顶部附近以“/ * Begin PBXBuildFile section * /”开头的部分删除有问题的条目。

然后我重新启动Xcode,没有对话框,所以我优雅地退出了。然后我从源代码控制中恢复了project.pbxproj,启动了xcode,问题似乎消失了。

我希望我知道为什么fseventsd对这些条目有疑问 - 他们有一个共同点就是资源/捆绑目录。

希望这适合你