修改並編譯golang源碼的操作步驟

最近為瞭做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/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來編譯。

讓我們開始操作吧!

為瞭方便修改調試,可以fork官方的倉庫(https://github.com/golang/go.git),然後拉取自己倉庫中的代碼,例如我的用戶名是Mango

第一步、安裝golang 1.4

主要操作如下:

為瞭方便操作,我們切換到root用戶

fabric@fabric-VirtualBox:~$ su root

為瞭方便統一管理,將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

需要關閉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復制到/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環境支持c語言的文件,所以需要開啟cgo

root@fabric:/opt/gopath/src/github.com/Mango/go/src# export CGO_ENABLED=1

我們需要指定由go 1.4進行編譯,所以得設置以下環境變量

root@fabric:/opt/gopath/src/github.com/Mango/go/src# export GOROOT_BOOTSTRAP=/usr/local/go1.4

這裡就用到瞭前面復制得到的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復制到/usr/local下,作為默認的golang標準庫目錄

root@fabric:/opt/gopath/src/github.com/Mango/go/src# cp -rp ../../go /usr/local/go

結語:

上述操作結束之後,當然還是要設置GOROOT之類的環境變量才可以,這樣的文章很多,不再贅述。

而且,相信都能改golang源碼的你,這些已經不在話下瞭。

到此這篇關於修改並編譯golang源碼的文章就介紹到這瞭,更多相關golang源碼編譯內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: