tinygo
tinygo copied to clipboard
Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
## Simple Summary Add new wasm32-unkonw-unkonw/unknow_wasm target in TinyGo. Use this target to generate clean wasm which have no dependecies on JS or WASI. ## Abstract In the current implementation,...
As described above. I'm wondering if we can just create a very tiny bootstrap C project and link it to a tinyGO program? And in that case, tinygo output will...
reproducer code ``` package main import ( "fmt" "reflect" ) type A struct { a string } func main() { v := reflect.ValueOf(A{"xxxx"}) fmt.Println(v.Interface()) } ``` go run main.go {xxxx}...
upstream sprouted a test -skip flag on tip today: https://go-review.googlesource.com/c/go/+/421439/ We should consider implementing it, too.
``` ☁ rasproxy tinygo version tinygo version 0.21.0 darwin/amd64 (using go version go1.16 and LLVM version 11.0.0) ☁ rasproxy go version go version go1.16 darwin/amd64 ☁ rasproxy go env GO111MODULE=""...
``` // tinygo build -o repro.wasm -target wasi repro.go package main func main() { var buckets [1
Pico W has been released today with included wirless chip. It would be great if tinygo supports it. It uses CYW43439 as wireless chip. https://www.raspberrypi.com/news/raspberry-pi-pico-w-your-6-iot-platform/
Hello, I encountered a problem when using the UART2 of ESP32(esp-wroom-32), the UART2 dose not work. I wonder if the framework(tinygo v0.24.0) supports the UART2 of ESP32(esp-wroom-32)? Thanks.
I installed release v0.24.0 with `go install`. When I tried to build a simple test program with the resulting executable I got this error: `error: could not find build id...