本文介绍了所有可能的GOOS值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我理解正确,编译源代码时会确定 GOOS 。



为了更好地支持多个OS,我对 GOOS 可能是有兴趣的。



当然,它可能有无限的可能性,因为Go是开源的。所以我真正想要的是一个通用名单。



已知值包括:
$ b $ ul

  • windows

  • linux
  • darwin 或 freebsd 或 unix ?我知道它们中至少有一个必须存在。


  • 解决方案

    在。

    随着Go 1.5(2015年第3季度), GOARCH 将变为很多更完整。

    通过 =https://github.com/minux> Minux Ma( minux )



      const goosList =android darwin dragonfly freebsd linux nacl \ 
    netbsd openbsd plan9 solaris windows
    $ b const goarchList =386 amd64 amd64p32 arm arm64 ppc64 ppc64le \
    mips mipsle mips64 mips64le mips64p32 mips64p32le \#(new)
    ppc s390 s390x sparc sparc64#(new)

    该清单仍在中进行审核, :

    现在(GO 1.5+ 2015年第三季度)反映了已完成的列表。


    If I get it right, GOOS is determined when compile the source code.

    To better support multiple OS, I'm interested in what GOOS could be.

    Of course, there might be infinite possibilities of it, since Go is opensourced. So what I really want is a "common list".

    Known values are:

    • windows
    • linux
    • darwin or freebsd or unix? I know that at least one of them must exist.

    解决方案

    Note that those values are defined in src/go/build/syslist.go.

    With Go 1.5 (Q3 2015), GOARCH will become much more complete.
    See commit 1eebb91 by Minux Ma (minux)

    const goosList = "android darwin dragonfly freebsd linux nacl \ 
      netbsd openbsd plan9 solaris windows "
    
    const goarchList = "386 amd64 amd64p32 arm arm64 ppc64 ppc64le \
       mips mipsle mips64 mips64le mips64p32 mips64p32le \ # (new)
       ppc s390 s390x sparc sparc64 " # (new)
    

    The list is still being review in Change 9644, with comments like:

    The official documentation now (GO 1.5+ Q3 2015) reflects that completed list.

    这篇关于所有可能的GOOS值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    10-21 05:07