這篇文章主要介紹如何在Linux上編譯dotnet cli的源代碼生成.NET Core SDK的安裝包,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站2013年開(kāi)創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元成都做網(wǎng)站,已為上家服務(wù),為成都各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792
.NET 的開(kāi)源,有了更多的DIY樂(lè)趣。這篇博文記錄一下在新安裝的 Linux Ubuntu 14.04 上通過(guò)自己動(dòng)手編譯 dotnet cli 的源代碼生成 .net core sdk 的 deb 安裝包。
1)安裝一個(gè)現(xiàn)有版本的 .net core sdk
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 sudo apt-get update apt-get install dotnet-dev-1.0.0-preview2.1-003177
如果不安裝,build時(shí)會(huì)出現(xiàn)下面的錯(cuò)誤
dotnet_install: Error: Unable to locate libunwind. Install libunwind to continue dotnet_install: Error: Unable to locate libicu. Install libicu to continue
2)從 github 上簽出 dotnet cli 的源代碼
apt-get install git git clone https://github.com/dotnet/cli.git
3)安裝依賴組件 liblldb, devscripts, debhelper
apt-get install liblldb-3.6 apt-get install devscripts apt-get install debhelper apt-get install curl
4)運(yùn)行 build 命令
./build.sh /t:compile
5)build 成功后的輸出結(jié)果
~/cli/artifacts/ubuntu.14.04-x64/packages# lsdotnet-host-ubuntu-x64.1.0.1.deb dotnet-hostfxr-ubuntu-x64.1.0.1.deb dotnet-sharedframework-ubuntu-x64.1.0.1.deb
注:在 build 時(shí)可通過(guò) init-microsoft.dotnet.buildtools.log 日志文件查看 build 進(jìn)度。
以上是“如何在Linux上編譯dotnet cli的源代碼生成.NET Core SDK的安裝包”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!