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:
Ayke van Laethem
2024-06-27 18:27:28 +02:00
committed by Ayke
parent 4517a0c17b
commit fae0402fde
16 changed files with 18 additions and 16 deletions
+4
View File
@@ -3,6 +3,10 @@
// tinygo build -size short -o hello-unknown.wasm -target wasm-unknown -gc=leaking -no-debug ./src/examples/hello-wasm-unknown/
package main
// Smoke test: make sure the fmt package can be imported (even if it isn't
// really useful for wasm-unknown).
import _ "os"
var x int32
//go:wasmimport hosted echo_i32
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build baremetal || js || windows
//go:build baremetal || js || windows || wasm_unknown
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && !baremetal && !wasip1
//go:build linux && !baremetal && !wasip1 && !wasm_unknown
package os
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !baremetal && !js && !wasip1
//go:build !baremetal && !js && !wasip1 && !wasm_unknown
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !baremetal && !js
//go:build !baremetal && !js && !wasm_unknown
// Portions copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build baremetal || (wasm && !wasip1)
//go:build baremetal || (tinygo.wasm && !wasip1)
package os
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build darwin || (linux && !baremetal) || wasip1
//go:build darwin || (linux && !baremetal && !wasm_unknown) || wasip1
// target wasi sets GOOS=linux and thus the +linux build tag,
// even though it doesn't show up in "tinygo info target -wasi"
+1 -1
View File
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !baremetal && !js && !wasip1
//go:build !baremetal && !js && !wasip1 && !wasm_unknown
package os
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build baremetal || js || wasi || wasip1
//go:build baremetal || js || wasi || wasip1 || wasm_unknown
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build (linux && !baremetal) || wasip1
//go:build (linux && !baremetal && !wasm_unknown) || wasip1
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build baremetal || (wasm && !wasip1)
//go:build baremetal || (tinygo.wasm && !wasip1)
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build darwin || (linux && !baremetal) || wasip1
//go:build darwin || (linux && !baremetal && !wasm_unknown) || wasip1
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !baremetal && !js
//go:build !baremetal && !js && !wasm_unknown
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build darwin || (linux && !baremetal) || wasip1
//go:build darwin || (linux && !baremetal && !wasm_unknown) || wasip1
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build baremetal || js
//go:build baremetal || js || wasm_unknown
package runtime
-2
View File
@@ -23,8 +23,6 @@ func init() {
__wasm_call_ctors()
}
var args []string
func ticksToNanoseconds(ticks timeUnit) int64 {
return int64(ticks)
}