gitlab.com/evatix-go/core@v1.3.55/osconsts/arrayvars.go (about)

     1  package osconsts
     2  
     3  //goland:noinspection ALL
     4  var (
     5  	X32Architectures = []string{
     6  		"386",
     7  		"arm",
     8  		"armbe",
     9  		"mips",
    10  		"amd64p32",
    11  		"mips64p32",
    12  		"mips64p32le",
    13  		"ppc",
    14  		"riscv",
    15  		"s390",
    16  		"sparc",
    17  	}
    18  
    19  	X64Architectures = []string{
    20  		"amd64",
    21  		"arm64",
    22  		"ppc64",
    23  		"ppc64le",
    24  		"mips64",
    25  		"mips64le",
    26  		"riscv64",
    27  		"s390x",
    28  		"wasm",
    29  		"arm64be",
    30  		"sparc64",
    31  	}
    32  
    33  	UnixGroups = []string{
    34  		"android",
    35  		"darwin",
    36  		"dragonfly",
    37  		"freebsd",
    38  		"linux",
    39  		"nacl",
    40  		"netbsd",
    41  		"openBSD",
    42  		"plan9",
    43  		"solaris",
    44  	}
    45  )