All possible GOOS value?

后端 未结 3 547
说谎
说谎 2021-01-30 12:25

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.

3条回答
  •  抹茶落季
    2021-01-30 13:26

    I think you're looking for this list of possible GOOS and GOARCH combinations, in this section:

    http://golang.org/doc/install/source#environment

    $GOOS and $GOARCH The name of the target operating system and compilation architecture. These default to the values of $GOHOSTOS and $GOHOSTARCH respectively (described below).

    Choices for $GOOS are darwin (Mac OS X 10.8 and above and iOS), dragonfly, freebsd, linux, netbsd, openbsd, plan9, solaris and windows. Choices for $GOARCH are amd64 (64-bit x86, the most mature port), 386 (32-bit x86), arm (32-bit ARM), arm64 (64-bit ARM), ppc64le (PowerPC 64-bit, little-endian), ppc64 (PowerPC 64-bit, big-endian), mips64le (MIPS 64-bit, little-endian), and mips64 (MIPS 64-bit, big-endian). mipsle (MIPS 32-bit, little-endian), and mips (MIPS 32-bit, big-endian).

    The valid combinations of $GOOS and $GOARCH are:

    $GOOS $GOARCH
    android   arm
    darwin    386
    darwin    amd64
    darwin    arm
    darwin    arm64
    dragonfly amd64
    freebsd   386
    freebsd   amd64
    freebsd   arm
    linux     386
    linux     amd64
    linux     arm
    linux     arm64
    linux     ppc64
    linux     ppc64le
    linux     mips
    linux     mipsle
    linux     mips64
    linux     mips64le
    netbsd    386
    netbsd    amd64
    netbsd    arm
    openbsd   386
    openbsd   amd64
    openbsd   arm
    plan9     386
    plan9     amd64
    solaris   amd64
    windows   386
    windows   amd64
    

提交回复
热议问题