Ayke

Results 441 comments of Ayke

@sago35 can you maybe try rebasing this on the dev branch? I think it will work now.

Huh, that are some weird errors. Maybe it's best to simply retry the build.

Thank you for this contribution! I've looked further into it and found the underlying issue, which I've fixed in #1105. With that found (and hopefully soon merged), I don't think...

@FrankReh thank you for investigating! So it appears that the way forward is to implement finalizers in the TinyGo GC? That's not going to be easy, but probably needs to...

@FrankReh can you make a PR out of that? It looks like a reasonable solution.

Still reproducible in the dev branch. I have simplified this to the following: ```go package main func Clone[S ~[]E, E any](s S) { } func main() { Clone([]int(nil)) } ```

The bug appears to be that `s` is somehow considered to be of type `any` (while it is of type `[]int`). EDIT: upgrading golang.org/x/tools/ doesn't help, unfortunately. EDIT 2: found...

@pkedy I made a PR, see https://github.com/tinygo-org/tinygo/pull/3086

I think there is a better way to do this: by treating these struct fields as bitfields (which they are) and auto generating getters/setters for these bitfields in gen-device-svd. At...

The `syscall.seek` issue will be fixed by #3103. I can reproduce the "out of memory" issue on my laptop though: ``` $ GOARCH=arm tinygo test -v compress/flate panic: runtime error:...