mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 21:13:39 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6384ecace0 | |||
| 38881a2850 | |||
| 0f1cf14743 | |||
| 7c34f7704e | |||
| 377415a6c3 | |||
| 1e13c6d18f |
@@ -1,3 +1,16 @@
|
|||||||
|
0.31.2
|
||||||
|
---
|
||||||
|
|
||||||
|
* **general**
|
||||||
|
* update the `net` submodule to updated version with `Buffers` implementation
|
||||||
|
|
||||||
|
* **compiler**
|
||||||
|
* `syscall`: add wasm_unknown tag to some additional files so it can compile more code
|
||||||
|
|
||||||
|
* **standard library**
|
||||||
|
* `runtime`: add Frame.Entry field
|
||||||
|
|
||||||
|
|
||||||
0.31.1
|
0.31.1
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
|||||||
|
|
||||||
// Version of TinyGo.
|
// Version of TinyGo.
|
||||||
// Update this value before release of new version of software.
|
// Update this value before release of new version of software.
|
||||||
const version = "0.31.1"
|
const version = "0.31.2"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// This variable is set at build time using -ldflags parameters.
|
// This variable is set at build time using -ldflags parameters.
|
||||||
|
|||||||
+1
-1
Submodule src/net updated: fcee4f5c46...a79417481d
@@ -13,6 +13,8 @@ type Frame struct {
|
|||||||
|
|
||||||
File string
|
File string
|
||||||
Line int
|
Line int
|
||||||
|
|
||||||
|
Entry uintptr
|
||||||
}
|
}
|
||||||
|
|
||||||
func CallersFrames(callers []uintptr) *Frames {
|
func CallersFrames(callers []uintptr) *Frames {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
//go:build baremetal || (wasm && !wasip1)
|
//go:build baremetal || (wasm && !wasip1) || wasm_unknown
|
||||||
|
|
||||||
// This file emulates some file-related functions that are only available
|
// This file emulates some file-related functions that are only available
|
||||||
// under a real operating system.
|
// under a real operating system.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
//go:build !(baremetal || (wasm && !wasip1))
|
//go:build !(baremetal || (wasm && !wasip1) || wasm_unknown)
|
||||||
|
|
||||||
// This file assumes there is a libc available that runs on a real operating
|
// This file assumes there is a libc available that runs on a real operating
|
||||||
// system.
|
// system.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
//go:build baremetal || js
|
//go:build baremetal || js || wasm_unknown
|
||||||
|
|
||||||
package syscall
|
package syscall
|
||||||
|
|
||||||
|
|||||||
@@ -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 || nintendoswitch || js
|
//go:build baremetal || nintendoswitch || js || wasm_unknown
|
||||||
|
|
||||||
package syscall
|
package syscall
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user