博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go语言 windows 32位编译环境搭建
阅读量:6292 次
发布时间:2019-06-22

本文共 2345 字,大约阅读时间需要 7 分钟。

网上讲go语言编译环境搭建的文章不少了,搭建环境本身也相对简单,

本文主要是提供一个可下载的地址,因为刚开始我找了好几个地址都没能下载到想要的版本,

这个地址是刚(2013.04.08晚)试过能访问的:

Downloads页面有下面这些go语言开发包,这里我们选择下载:

 

如果上面地址不能下了,请到我的微盘下载: 

下载下来之后go环境的配置比较简单:

1 解压压缩包到go工作目录,如解压到E:\opensource\go\go,解压后的目录结构如下:

E:\opensource\go\go  ├─api  ├─bin  │  ├─go.exe  │  ├─godoc.exe  │  └─gofmt.exe  ├─doc  ├─include  ├─lib  ├─misc  ├─pkg  ├─src  └─test

2 增加环境变量GOROOT,取值为上面的go工作目录

3 Path环境变量中添加";%GOROOT%\bin",以便能够直接调用go命令来编译go代码,至此go编译环境就配置好了

   注:如果不想手动设置系统环境变量,也可下载,

         修改goenv.bat文件中的GOROOT值为上面的go工作目录后直接双击该bat文件,go编译环境变量即设置完成。

4 测试go编译环境,启动一个cmd窗口,直接输入go,看到下面的提示就是搭建成功了

E:\opensource\go\go>goGo is a tool for managing Go source code.Usage:        go command [arguments]The commands are:    build       compile packages and dependencies    clean       remove object files    doc         run godoc on package sources    env         print Go environment information    fix         run go tool fix on packages    fmt         run gofmt on package sources    get         download and install packages and dependencies    install     compile and install packages and dependencies    list        list packages    run         compile and run Go program    test        test packages    tool        run specified go tool    version     print Go version    vet         run go tool vet on packagesUse "go help [command]" for more information about a command.Additional help topics:    gopath      GOPATH environment variable    packages    description of package lists    remote      remote import path syntax    testflag    description of testing flags    testfunc    description of testing functionsUse "go help [topic]" for more information about that topic.

5 编译helloworld测试程序,go语言包中test目录带有helloworld.go测试程序,源码见"附一 helloworld.go",

   直接调用"go build helloworld.go"就生成了"helloworld.exe"可执行程序,运行一下这个程序看到了我们期望的hello,wolrd。

E:\opensource\go\go\test>go build helloworld.go E:\opensource\go\go\test>helloworld.exehello, worldE:\opensource\go\go\test>

附一

// cmpout// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// Test that we can do page 1 of the C book.package mainfunc main() {    print("hello, world\n")}

 

修改历史:

  2013.04.08 初稿

  2013.04.09 增加go语言系统环境自动设置附件

  2013.04.10 增加go语言开发包微盘下载地址

转载于:https://www.cnblogs.com/youyou/archive/2013/04/08/3009177.html

你可能感兴趣的文章
虚拟机 liunx系统以 root 身份登录权限
查看>>
《当程序员的那些狗日日子》(五十一)太不给力的年终奖
查看>>
LeetCode(203): Remove Linked List Elements
查看>>
Join和Relate作用和区别
查看>>
mysql中的意向锁IS,IX
查看>>
CSS学习笔记02float
查看>>
python库的学习系列之 15. Generic Operating System Services
查看>>
使用excel进行数据挖掘(5)---- 应用场景分析
查看>>
【CSS】隐藏多行文本框Textarea在IE中的垂直滚动栏
查看>>
2017-2018-1 《信息安全系统设计基础》实验一报告
查看>>
2017-2018-1 20155303 《信息安全系统设计基础》第五周学习总结
查看>>
0314考试总结
查看>>
Jquery 文字模拟输入效果
查看>>
linux 下 `dirname $0`
查看>>
代理模式(C++)
查看>>
vim自动补全快捷键
查看>>
Android Service AIDL
查看>>
PHP的工作原理和生命周期
查看>>
jQuery - 左右拖动分隔条
查看>>
注入 - Ring3 APC注入
查看>>