douchuituo3032 2018-01-15 21:35
浏览 1814
已采纳

go交叉编译时出错:不支持的GOOS / GOARCH对linux / amd64

I'm trying to cross-compile go code on windows, targeting linux machine. I have used simple go code to determine target os/platform,

package main

import "fmt"
import "runtime"

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

Running above code gives me

OS: linux
Architecture: amd64

hovever when I try to cross compile on windows (using JetBrain's Goland IDE) with

> go version
go version go1.9.2 windows/amd64

using GOOS=linux ;GOARCH=amd64 environment flags, I get following error

cmd/go: unsupported GOOS/GOARCH pair linux /amd64

I am new to golang, so I might be missing something simple, but this error got me stuck. Any help appreciated...

  • 写回答

1条回答 默认 最新

  • dtl85148 2018-01-15 21:40
    关注

    It looks like your GOOS is getting set to "linux ", not "linux".

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题
  • ¥50 C#编程中使用printDocument类实现文字排版打印问题