2010-07-14 16 views
1

我收到以下錯誤,當我打開這個Xcode項目Xcode的內部錯誤「的事件流<DTFileSystemEventStream」

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

我曾嘗試在命令行做一個「xcodebuild聯編-activetarget構型的調試」同時,我也得到了同樣的錯誤與堆棧跟蹤

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

雪豹更新安裝後,我似乎得到這個錯誤,它令人難以置信的令人沮喪。發生的情況是,CarbonCore函數FSEventStreamStart正在對fsevenstd進程進行rpc調用,以監視特定目錄中的更改。如果你試圖運行的Xcode尾-f /var/log/system.log,你可能會看到類似以下內容:

fseventsd [151]:implementation_added_client:無法添加客戶端的路徑

我確實要進入我的project.pbxproj並從以文件頂部附近的「/ *開始PBXBuildFile節* /」開始的節中刪除違規的條目。

然後我重新啓動Xcode,沒有對話框,所以我優雅地退出了它。然後我從源代碼控制中恢復了project.pbxproj,啓動了xcode,問題似乎消失了。

我希望我知道爲什麼fseventsd有這些條目的問題 - 他們共同的一件事是它們是資源/包目錄。

希望這適用於你