2013-04-13 131 views
0

我想下載Monodevelop並編譯源代碼。以下是我得到的錯誤Monodevelop源代碼編譯錯誤

{ 
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/Newtonsoft.Json/Src/Newtonsoft.Json/Newtonsoft.Json.csproj' 
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/ikvm/reflect/IKVM.Reflection.csproj' 
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/xwt/Xwt/Xwt.csproj' 
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/xwt/Xwt.Gtk/Xwt.Gtk.csproj' 
} 

我看到沒有找到所有的外部依賴關係。我使用「git clone」克隆項目。是否有一個特定的git選項來下載外部依賴項,或者我應該單獨下載每個項目來編譯?

感謝您的幫助

尚卡爾。

回答

1

http://git-scm.com/book/en/Git-Tools-Submodules

MonoDevelop的使用幾個子模塊,您還需要下載並檢查出來。

+0

非常感謝。我只是跑了兩個命令 { git submodule init & git submodule update } 然後做了一個make,everthing像魅力一樣工作。 – Shankar