Browse Source

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.
pull/4273/merge
Ayke van Laethem 4 months ago
committed by Ayke
parent
commit
fae0402fde
  1. 4
      src/examples/hello-wasm-unknown/main.go
  2. 2
      src/os/dir_other.go
  3. 2
      src/os/dir_unix.go
  4. 2
      src/os/dirent_linux.go
  5. 2
      src/os/file_anyos.go
  6. 2
      src/os/file_other.go
  7. 2
      src/os/file_unix.go
  8. 2
      src/os/removeall_noat.go
  9. 2
      src/os/removeall_other.go
  10. 2
      src/os/stat_linuxlike.go
  11. 2
      src/os/stat_other.go
  12. 2
      src/os/stat_unix.go
  13. 2
      src/os/types_anyos.go
  14. 2
      src/os/types_unix.go
  15. 2
      src/runtime/nonhosted.go
  16. 2
      src/runtime/runtime_wasm_unknown.go

4
src/examples/hello-wasm-unknown/main.go

@ -3,6 +3,10 @@
// tinygo build -size short -o hello-unknown.wasm -target wasm-unknown -gc=leaking -no-debug ./src/examples/hello-wasm-unknown/ // tinygo build -size short -o hello-unknown.wasm -target wasm-unknown -gc=leaking -no-debug ./src/examples/hello-wasm-unknown/
package main 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 var x int32
//go:wasmimport hosted echo_i32 //go:wasmimport hosted echo_i32

2
src/os/dir_other.go

@ -1,4 +1,4 @@
//go:build baremetal || js || windows //go:build baremetal || js || windows || wasm_unknown
// Copyright 2009 The Go Authors. All rights reserved. // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/dir_unix.go

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build linux && !baremetal && !wasip1 //go:build linux && !baremetal && !wasip1 && !wasm_unknown
package os package os

2
src/os/dirent_linux.go

@ -1,4 +1,4 @@
//go:build !baremetal && !js && !wasip1 //go:build !baremetal && !js && !wasip1 && !wasm_unknown
// Copyright 2020 The Go Authors. All rights reserved. // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/file_anyos.go

@ -1,4 +1,4 @@
//go:build !baremetal && !js //go:build !baremetal && !js && !wasm_unknown
// Portions copyright 2009 The Go Authors. All rights reserved. // Portions copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/file_other.go

@ -1,4 +1,4 @@
//go:build baremetal || (wasm && !wasip1) //go:build baremetal || (tinygo.wasm && !wasip1)
package os package os

2
src/os/file_unix.go

@ -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, // target wasi sets GOOS=linux and thus the +linux build tag,
// even though it doesn't show up in "tinygo info target -wasi" // even though it doesn't show up in "tinygo info target -wasi"

2
src/os/removeall_noat.go

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build !baremetal && !js && !wasip1 //go:build !baremetal && !js && !wasip1 && !wasm_unknown
package os package os

2
src/os/removeall_other.go

@ -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. // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/stat_linuxlike.go

@ -1,4 +1,4 @@
//go:build (linux && !baremetal) || wasip1 //go:build (linux && !baremetal && !wasm_unknown) || wasip1
// Copyright 2009 The Go Authors. All rights reserved. // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/stat_other.go

@ -1,4 +1,4 @@
//go:build baremetal || (wasm && !wasip1) //go:build baremetal || (tinygo.wasm && !wasip1)
// Copyright 2016 The Go Authors. All rights reserved. // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/stat_unix.go

@ -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. // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/types_anyos.go

@ -1,4 +1,4 @@
//go:build !baremetal && !js //go:build !baremetal && !js && !wasm_unknown
// Copyright 2009 The Go Authors. All rights reserved. // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/os/types_unix.go

@ -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. // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style

2
src/runtime/nonhosted.go

@ -1,4 +1,4 @@
//go:build baremetal || js //go:build baremetal || js || wasm_unknown
package runtime package runtime

2
src/runtime/runtime_wasm_unknown.go

@ -23,8 +23,6 @@ func init() {
__wasm_call_ctors() __wasm_call_ctors()
} }
var args []string
func ticksToNanoseconds(ticks timeUnit) int64 { func ticksToNanoseconds(ticks timeUnit) int64 {
return int64(ticks) return int64(ticks)
} }

Loading…
Cancel
Save