Go 語言誕生5周年!
友情提示:本文使用Markdown編寫,黑色背景文字可能需要橫向拖動才能看清全文
最近為了做Hyperledger Fabric國密改造,涉及到了golang源碼的改動。特將操作過程整理如下,以供參考:
golang的源碼安裝其實比較簡單,只需運行源碼包中的指令碼src/all.bash,等到出現類似以下字樣就安裝好了:
Installed Go for linux/amd64 in xxx(目錄位址)Installed commands in xxx(目錄位址)
但是在源碼安裝1.5版本以上的go時會報以下的錯誤 :
##### Building Go bootstrap tool.cmd/distERROR: Cannot find /home/fabric/go1.4/bin/go.Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.
這是由於go 1.5版以後的編譯安裝需要1.4版本go,所以如果想要通過源碼方式安裝高版本go,必須先安裝好1.4版本的go。
讓我們開始操作吧!
為了方便修改調試,可以fork官方的倉庫(https://github.com/golang/go.git),然後拉取自己倉庫中的代碼,例如我的使用者名稱是MangoDowner
第一步、安裝golang 1.4
主要操作如下:
fabric@fabric-VirtualBox:~$ su root
- 為了方便統一管理,將golang源碼放入GOPATH中
root@fabric:~# export GOPATH=/opt/gopathroot@fabric:~# cd $GOPATH/src/github.com/MangoDowner/root@fabric:/opt/gopath/src/github.com/MangoDowner# git clone https://github.com/MangoDowner/go.gitCloning into 'go'...remote: Counting objects: 322777, done.remote: Compressing objects: 100% (73/73), done.remote: Total 322777 (delta 32), reused 54 (delta 28), pack-reused 322675Receiving objects: 100% (322777/322777), 147.71 MiB | 3.49 MiB/s, done.Resolving deltas: 100% (255582/255582), done.
友情提醒下,雖然可能有點囉嗦,但是MangoDowner/go這個倉庫其實是不存在的,我自己改的源碼放在了MangoDowner/go-gm下,這裡只是為了方便舉例子...
root@fabric:/opt/gopath/src/github.com/MangoDowner# cd goroot@fabric:/opt/gopath/src/github.com/MangoDowner/go# git checkout release-branch.go1.4Branch release-branch.go1.4 set up to track remote branch release-branch.go1.4 from origin.Switched to a new branch 'release-branch.go1.4'
- 進入src目錄,並運行all.bash 安裝指令碼,稍等片刻即可安裝成功:
root@fabric:/opt/gopath/src/github.com/MangoDowner/go# cd srcroot@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# ./make.bash # Building C bootstrap tool. cmd/dist # Building compilers and Go bootstrap tool for host, linux/amd64. lib9 libbio liblink cmd/cc cmd/gc cmd/6l .... # Checking API compatibility. Skipping cmd/api checks real 0m0.538s user 0m0.310s sys 0m0.191s ALL TESTS PASSED --- Installed Go for linux/amd64 in /root/software/go Installed commands in /root/software/go/bin *** You need to add /root/software/go/bin to your PATH.
如果遇到報錯
cannot load DWARF output from $WORK/os/user/_obj//_cgo_.o: decoding dwarf section info at offset 0x4: unsupported version 0
需要關閉cgo支援,重新編譯
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# export CGO_ENABLED=0 root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# ./make.bash
- 最後,我們將編譯好的go 1.4複製到/usr/local下方便以後使用
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# cp -rp ../../go /usr/local/go1.4
這樣你就能得到1.4版本的go了。
第二步、安裝golang 1.9
主要操作如下:
- 我們需要編譯好的golang環境支援c語言的檔案,所以需要開啟cgo
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# export CGO_ENABLED=1
- 我們需要指定由go 1.4進行編譯,所以得設定以下環境變數
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# export GOROOT_BOOTSTRAP=/usr/local/go1.4
這裡就用到了前面複製得到的go 1.4目錄
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# cd ../root@fabric:/opt/gopath/src/github.com/MangoDowner/go# git checkout release-branch.go1.9Branch release-branch.go1.9 set up to track remote branch release-branch.go1.9 from origin.Switched to a new branch 'release-branch.go1.9'
root@fabric:/opt/gopath/src/github.com/MangoDowner/go# cd srcroot@fabric:/opt/gopath/src/github.com/MangoDowner/go# ./make.bash...
- 最後將編譯好的go 1.9複製到/usr/local下,作為預設的golang標準庫目錄
root@fabric:/opt/gopath/src/github.com/MangoDowner/go/src# cp -rp ../../go /usr/local/go
結語:
上述操作結束之後,當然還是要設定GOROOT之類的環境變數才可以,這樣的文章很多,不再贅述。
而且,相信都能改golang源碼的你,這些已經不在話下了。