golang中的cross compiling

交叉编译就是编译出在其它操作系统下运行的程序,比如在Linux下编译后在Windows系统中运行,或者说在32位下编译在64位下运行。
golang 1.5之后很容易的实现交叉编译,通过设置$GOOS, $GOARCH两个环境变量就能够编译出来其他平台运行所需要的bin文件.

通过下面的例子来说明

package main

import "fmt"
import "runtime"

func main() {
    fmt.Printf("OS: %s\nArchitecture: %s\n", runtime.GOOS, runtime.GOARCH)
}

编译Apple MacBook所使用的程序,我们指定$GOOS, $GOARCH

GOOS=darwin GOARCH=386 go build test.go

那么生成的bin只能在OS X平台上运行,如果需要运行在Windows,可以编译如下

GOOS=windows GOARCH=386 go build test.go

通过这个url中可以查询到所有支持的GOOS以及GOARCH

你可能感兴趣的:(golang)