溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Linux上編譯dotnet cli的源代碼生成.NET Core SDK的安裝包

發(fā)布時(shí)間:2021-12-04 11:25:43 來源:億速云 閱讀:142 作者:小新 欄目:大數(shù)據(jù)

這篇文章主要介紹如何在Linux上編譯dotnet cli的源代碼生成.NET Core SDK的安裝包,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

.NET 的開源,有了更多的DIY樂趣。這篇博文記錄一下在新安裝的 Linux Ubuntu 14.04 上通過自己動(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í)可通過 init-microsoft.dotnet.buildtools.log 日志文件查看 build 進(jìn)度。

以上是“如何在Linux上編譯dotnet cli的源代碼生成.NET Core SDK的安裝包”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI