mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
wasm-unknown: make sure the os package can be imported
See: https://github.com/tinygo-org/tinygo/issues/4314 The os package isn't particularly useful on wasm-unknown, but just like on baremetal systems it's imported by a lot of packages so it should at least be possible to import this package.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
//go:build baremetal || js
|
||||
//go:build baremetal || js || wasm_unknown
|
||||
|
||||
package runtime
|
||||
|
||||
|
||||
@@ -23,8 +23,6 @@ func init() {
|
||||
__wasm_call_ctors()
|
||||
}
|
||||
|
||||
var args []string
|
||||
|
||||
func ticksToNanoseconds(ticks timeUnit) int64 {
|
||||
return int64(ticks)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user