Current fwd doesn’t compile with the dev branch of tinygo due to incompatibilities with the reflect package introduced in [reflect: use int in StringHeader and SliceHeader on non-AVR platforms by ydnar · Pull Request #4156 · tinygo-org/tinygo](https://github.com/tinygo-org/tinygo/pull/4156) . The symptom is ``` ../../../../../pkg/mod/github.com/philhofer/fwd@v1.1.2/writer_tinygo.go:15:9: cannot use l (variable of type uintptr) as int value in struct literal ``` A fix might be to use the safer, portable functions suggested in https://github.com/tinygo-org/tinygo/issues/1284 ?