itang / todo.itang.me

4 stars 2 forks source link

熟练掌握Go [暂停中] #10

Open itang opened 10 years ago

itang commented 10 years ago

目标:从熟悉到熟练

基础:

深入:

高级话题:

itang commented 10 years ago

go test

1 运行某个src下所有的tests

go test github.com/campoy/todo/...

go test ./...
go test -race ./...
itang commented 10 years ago

gox 跨系统构建

$ go get github.com/mitchellh/gox
$ gox -build-toolchain                   
$ gox 

$ gox ./...

$ gox github.com/mitchellh/gox github.com/hashicorp/serf

$ gox -os="linux"