最近為了做Hyperledger Fabric國密改造,涉及到了golang源碼的改動。特將操作過程整理如下,以供參考:
golang的源碼安裝其實比較簡單,只需運行源碼包中的腳本src/all.bash,等到出現(xiàn)類似以下字樣就安裝好了:
Installed Go for linux/amd64 in xxx(目錄地址)
Installed commands in xxx(目錄地址)
但是在源碼安裝1.5版本以上的go時會報以下的錯誤 :
##### Building Go bootstrap tool.
cmd/dist
ERROR: 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。
其實這里不限定使用go1.4版本,如果你需要得到1.10版本的golang,你也可以用1.9(1.10)版本的golang來編譯。
讓我們開始操作吧!
為了方便修改調(diào)試,可以fork官方的倉庫(https://github.com/golang/go.git),然后拉取自己倉庫中的代碼,例如我的用戶名是Mango
第一步、安裝golang 1.4
主要操作如下:
為了方便操作,我們切換到root用戶
fabric@fabric-VirtualBox:~$ su root
為了方便統(tǒng)一管理,將golang源碼放入GOPATH中
root@fabric:~# export GOPATH=/opt/gopath
root@fabric:~# cd $GOPATH/src/github.com/Mango/
root@fabric:/opt/gopath/src/github.com/Mango# git clone https://github.com/Mango/go.git
Cloning 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 322675
Receiving objects: 100% (322777/322777), 147.71 MiB | 3.49 MiB/s, done.
Resolving deltas: 100% (255582/255582), done.
友情提醒下,雖然可能有點啰嗦,但是Mango/go這個倉庫其實是不存在的,這里只是為了方便舉例子,大家可以自行從官方倉庫fork分支...
切換為go 1.4分支
root@fabric:/opt/gopath/src/github.com/Mango# cd go
root@fabric:/opt/gopath/src/github.com/Mango/go# git checkout release-branch.go1.4
Branch 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/Mango/go# cd src
root@fabric:/opt/gopath/src/github.com/Mango/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
需要關(guān)閉cgo支持,重新編譯
root@fabric:/opt/gopath/src/github.com/Mango/go/src# export CGO_ENABLED=0
root@fabric:/opt/gopath/src/github.com/Mango/go/src# ./make.bash
最后,我們將編譯好的go 1.4復(fù)制到/usr/local下方便以后使用
root@fabric:/opt/gopath/src/github.com/Mango/go/src# cp -rp ../../go /usr/local/go1.4
這樣你就能得到1.4版本的go了。
第二步、安裝golang 1.9
主要操作如下:
我們需要編譯好的golang環(huán)境支持c語言的文件,所以需要開啟cgo
root@fabric:/opt/gopath/src/github.com/Mango/go/src# export CGO_ENABLED=1
我們需要指定由go 1.4進行編譯,所以得設(shè)置以下環(huán)境變量
root@fabric:/opt/gopath/src/github.com/Mango/go/src# export GOROOT_BOOTSTRAP=/usr/local/go1.4
這里就用到了前面復(fù)制得到的go 1.4目錄
回到go源碼根目錄,并切換分支至1.9
root@fabric:/opt/gopath/src/github.com/Mango/go/src# cd ../
root@fabric:/opt/gopath/src/github.com/Mango/go# git checkout release-branch.go1.9
Branch 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'
下面的過程就和編譯go1.4很類似,不再贅述
root@fabric:/opt/gopath/src/github.com/Mango/go# cd src
root@fabric:/opt/gopath/src/github.com/Mango/go# ./make.bash
...
這里的make.bash
在一些版本中,也可能是all.bash
最后將編譯好的go 1.9復(fù)制到/usr/local下,作為默認的golang標準庫目錄
root@fabric:/opt/gopath/src/github.com/Mango/go/src# cp -rp ../../go /usr/local/go
結(jié)語:
上述操作結(jié)束之后,當然還是要設(shè)置GOROOT之類的環(huán)境變量才可以,這樣的文章很多,不再贅述。
而且,相信都能改golang源碼的你,這些已經(jīng)不在話下了。
到此這篇關(guān)于修改并編譯golang源碼的文章就介紹到這了,更多相關(guān)golang源碼編譯內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- golang中cache組件的使用及groupcache源碼解析
- golang 如何刪除二進制文件中的源碼路徑信息
- 詳解golang RWMutex讀寫互斥鎖源碼分析
- Golang編譯器介紹
- Golang如何交叉編譯各個平臺的二進制文件詳解
- mac下golang安裝了windows編譯環(huán)境后編譯變慢