1 //go:build linux && (baremetal || nintendoswitch || wasm_unknown) 2 3 // Other systems that aren't operating systems supported by the Go toolchain 4 // need to pretend to be an existing operating system. Linux seems like a good 5 // choice for this for its wide hardware support. 6 7 package runtime 8 9 const GOOS = "linux" 10