如何在cygwin上编译golang

前端之家收集整理的这篇文章主要介绍了如何在cygwin上编译golang前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

基本步骤如下:

1、安装hg

$ wget http://peak.telecommunity.com/dist/ez_setup.py
$ python ez_setup.py
$ easy_install -U mercurial

2、下载代码

hg clone https://golang-on-cygwin.googlecode.com/hg/ golang-on-cygwin

3、准备编译

vi /etc/profile

GOOS=linux

GOARCH=386(目前不支持amd64)

GOROOT=

GOBIN=

注意GOBIN必须存在

另外在$GOROOT/pkg/linu_386必须存在

还有,需要把/src/cmd/gc/mkbuiltin删除后重新建一个

原文链接:https://www.f2er.com/go/191466.html

猜你在找的Go相关文章