diff options
author | Lucas Teske <[email protected]> | 2020-05-09 15:39:19 -0300 |
---|---|---|
committer | Ayke <[email protected]> | 2020-07-31 00:58:09 +0200 |
commit | 3650c2c7397b5f21f61c1a4362b28596968c912f (patch) | |
tree | 7c331676822cb4109fb11967cea73e826f2bd138 /src/runtime/runtime_unix.go | |
parent | d4e04e4e493aa4a99659361e28b22ecd51cceee3 (diff) | |
download | tinygo-3650c2c7397b5f21f61c1a4362b28596968c912f.tar.gz tinygo-3650c2c7397b5f21f61c1a4362b28596968c912f.zip |
nintendoswitch: Add experimental Nintendo Switch support without CRT
Bare minimal nintendo switch support using LLD
Diffstat (limited to 'src/runtime/runtime_unix.go')
-rw-r--r-- | src/runtime/runtime_unix.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/runtime_unix.go b/src/runtime/runtime_unix.go index acb830946..a3c2b4471 100644 --- a/src/runtime/runtime_unix.go +++ b/src/runtime/runtime_unix.go @@ -1,4 +1,5 @@ // +build darwin linux,!baremetal freebsd,!baremetal +// +build !nintendoswitch package runtime |