mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-30 16:48:40 +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
|
||||
---
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ import (
|
||||
|
||||
// Version of TinyGo.
|
||||
// Update this value before release of new version of software.
|
||||
const version = "0.31.1"
|
||||
const version = "0.31.2"
|
||||
|
||||
var (
|
||||
// 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
|
||||
Line int
|
||||
|
||||
Entry uintptr
|
||||
}
|
||||
|
||||
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
|
||||
// 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
|
||||
// system.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//go:build baremetal || js
|
||||
//go:build baremetal || js || wasm_unknown
|
||||
|
||||
package syscall
|
||||
|
||||
|
||||
@@ -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 || nintendoswitch || js
|
||||
//go:build baremetal || nintendoswitch || js || wasm_unknown
|
||||
|
||||
package syscall
|
||||
|
||||
|
||||
Reference in New Issue
Block a user