go在windows下编译linux的执行文件

go在windows下编译linux的执行文件

package main

import (
	"fmt"
	"os"
	"os/exec"
)

//filepath: 要编译的文件的路径
func build(filepath string){
	_ = os.Setenv("CGO_ENABLED", "0")
	_ = os.Setenv("GOARCH", "amd64")
	_ = os.Setenv("GOOS", "linux")

	arg := []string{"build", filepath}
	if err := exec.Command("go", arg...).Run(); err!=nil {
		fmt.Println("编译失败:", err)
	} else{
		fmt.Println("编译成功")
	}
}

func main() {
	build(`C:\cron\main.go`)//要编译的文件的路径
}

如上图,go在windows下编译linux的执行文件,填写入需要编译的go文件路径即可

 

go在windows下编译windows的可执行文件:

go build xxx.go 

参考文章:https://www.cnblogs.com/traditional/p/11632496.html

你可能感兴趣的:(go,go编译linux执行文件,window编译linux文件)