mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 18:47:47 +00:00
10 lines
304 B
Go
10 lines
304 B
Go
//go:build linux && (baremetal || nintendoswitch || wasi)
|
|
|
|
// Other systems that aren't operating systems supported by the Go toolchain
|
|
// need to pretend to be an existing operating system. Linux seems like a good
|
|
// choice for this for its wide hardware support.
|
|
|
|
package runtime
|
|
|
|
const GOOS = "linux"
|