go语言在idear怎么进行多个文件的链接

Python017

go语言在idear怎么进行多个文件的链接,第1张

1、解压压缩包到go工作目录,如解压到E:\opensource\go\go,解压后的目录结构如下:E:\opensource\go\go├─api├─bin│├─go.exe│├─godoc.exe│└─gofmt.exe├─doc├─include├─lib├─misc├─pkg├─src└─test2、增加环境变量GOROOT,取值为上面的go工作目录3、Path环境变量中添加"%GOROOT%\bin",以便能够直接调用go命令来编译go代码,至此go编译环境就配置好了注:如果不想手动设置系统环境变量,也可下载go启动环境批处理附件,修改goenv.bat文件中的GOROOT值为上面的go工作目录后直接双击该bat文件,go编译环境变量即设置完成。4、测试go编译环境,启动一个cmd窗口,直接输入go,看到下面的提示就是搭建成功了E:\opensource\go\go>goGoisatoolformanagingGosourcecode.Usage:gocommand[arguments]Thecommandsare:buildcompilepackagesanddependenciescleanremoveobjectfilesdocrungodoconpackagesourcesenvprintGoenvironmentinformationfixrungotoolfixonpackagesfmtrungofmtonpackagesourcesgetdownloadandinstallpackagesanddependenciesinstallcompileandinstallpackagesanddependencieslistlistpackagesruncompileandrunGoprogramtesttestpackagestoolrunspecifiedgotoolversionprintGoversionvetrungotoolvetonpackagesUse"gohelp[command]"formoreinformationaboutacommand.Additionalhelptopics:gopathGOPATHenvironmentvariablepackagesdescriptionofpackagelistsremoteremoteimportpathsyntaxtestflagdescriptionoftestingflagstestfuncdescriptionoftestingfunctionsUse"gohelp[topic]"formoreinformationaboutthattopic.5、编译helloworld测试程序,go语言包中test目录带有helloworld.go测试程序,源码见"附一helloworld.go",直接调用"gobuildhelloworld.go"就生成了"helloworld.exe"可执行程序,运行一下这个程序看到了我们期望的hello,wolrd。E:\opensource\go\go\test>gobuildhelloworld.goE:\opensource\go\go\test>helloworld.exehello,worldE:\opensource\go\go\test>附一helloworld.go//cmpout//Copyright2009TheGoAuthors.Allrightsreserved.//UseofthissourcecodeisgovernedbyaBSD-style//licensethatcanbefoundintheLICENSEfile.//Testthatwecandopage1oftheCbook.packagemainfuncmain(){print("hello,world\n")}

将下载的zip包解压,然后执行 File ->open 操作打开该项目

打开该项目后,进行 SDK 和 模块配置

执行操作 File ->Project Structure 打开项目结构配置窗口

如下图配置,SDKs 中设置 JDK、 IDEA 这两个的路径(图上的 Go sdk 你先别管他,你现在还操作不了的)

IDEA 的sdk 其实就是软件安装目录

然后是模块设置 Modules

设置当前模块的SDK依赖,如果不设置这里,则编译时会出现下面的错误:

我在这里莫名其妙了好半天才找到原因

然后选择 ro.redeul.google.go 包进行编译,如图:

这里如果没有出现 error 则编译成功。

3. 生成插件 jar 安装包

选择 Build ->Prepare Plugin module ... For Deployment 将会生成一个google-go-language.jar 的文件在项目根目录下

4. 安装插件:

选择 File->settings ->Plugins ->install plugins from disk 在右下角

选择刚刚生成的 jar 文件将自动安装插件,然后重启软件就好了

5. 下载安装 go sdk

http://golang.so/dl/1.4/

选择你对应的系统版本安装吧,

然后一些系统环境变量配置,

参考:

新建 变量名:GOBIN 变量值 :C:\Go\bin

新建 变量名:GOARCH 变量值:386

如果是64位系统 变量值为amd64

新建 变量名:GOOS 变量值:windows

新建 变量名: GOROOT 变量值:C:\Go

新建 变量名: GOPATH 变量值:C:\my\go\project

\my\go\project 是你的项目目录

编辑 Path 在Path的变量值的最后加上 C:\Go\bin

之后你新建项目就可以看到 go 的图标啦

新建好项目 hello world 一下吧 o(∩_∩)o 哈哈 ,可以开始开发你牛逼的 GO 项目了

好了先就这样吧

1请自行安装SSH远程工具 2SSH远程登录你的linux服务器 3yum install mercurial 安装 mercurial包 安装git包 yum install git 安装gcc yum install gcc 然后就可以下载golang的压缩包了 下载完成 用tar 命令来解压压缩包 tar -zxvf go1.2.linux-a...