go的资料
pallas0328
2010-01-19
文档资料http://go-lang.info/,和被墙的http://golang.org/一模一样
go for windows下载:http://code.google.com/p/go-windows/ 使用前需要dos执行 set GOROOT=<the go folder> set GOOS=mingw set GOARCH=386 set PATH=<the go folder>\bin 编译执行test.go文件需要执行 8g test.go //编译生成test.8 8l test.8 //连接生成8.exe 8 //执行8.exe 中文支持需要保证go文件采用utf-8格式存放,且没有BOM字符 1、dos执行chcp 65001 //修改代码页为utf-8,否则无法通过编译 2、修改dos窗口字体为新宋体,否则显示的字符为乱码 3、在chcp之后似乎就不支持批处理文件了。 如果你写了一个bat来编译执行,那么,失败不是你的人品问题。 4、关于BOM,请看http://en.wikipedia.org/wiki/Byte_order_mark,大意就是windows下的编辑器notepad在保存utf-8文件的时候会自动在文件开头加三个Byte,内容为EF BB BF。你可以用VIM 或者Notepad++来编辑代码。如果是用editplus,在工具-参数选择-文件里把“不添加字节顺序标记到UTF-8文件”勾上就可以了。没有editplus?呵呵,写个go文件删除指定文件开头的三个字节就可以了。 |
|
lifc
2010-01-19
不错!顺便问一下mingw支持目前完善到什么程度了?用Windows系统的同学试过给大家介绍一下~
|
|
lifc
2010-01-19
刚编译wine 1.1.36试过,set GOOS=mingwset应该是mingw,不改找不到runtime.a。
可能是比较早的版本或和wine兼容性不好,能编译hello world程序但运行没结果,编译用到chan消息通道的程序出错。不过相信正式版也快出了,到时候安装测试都会比较方便。 |
|
pallas0328
2010-01-26
http://go-lang.cat-v.org/
Resources: › dev utils › doc/ › go code › go search › irc logs/ › library bindings › os ports › pure go libs › text editors/ |