Ayke

Results 441 comments of Ayke

> Using `-run TestCVE202230630`, I can confirm that it _is_ the new CVE-related test, which could mean that `tinygo`-built programs may be vulnerable to [CVE-2022-30630](https://github.com/advisories/GHSA-vjj7-39vr-35r3). But I'm not sure why,...

We don't fully support reflect yet. The reflect package is needed for the text/template package. Removing the macOS label because this is not a macOS issue, but a reflect issue...

@sallaben I think it's possible at the moment. What you need to do is essentially replicate `createMakeMap` in the reflect package: https://github.com/tinygo-org/tinygo/blob/b65447c7d567eea495805656f45472cc3c483e03/compiler/map.go#L20-L58 So basically call `runtime.hashmapMake` from the reflect package...

I don't currently have plans to continue working on this PR, so closing. If I want to do it, I can always restore the code from this PR.

@kenbell perhaps you can also include some of the original commit message in this commit?

Yes, the Cortex-M0 has implemented far fewer instructions. Many wide instructions (such as `ands.w`) and most/all conditional instructions (such as `mrsne`) are not supported. This is what the error says:...

This Windows failure may be a race condition in loader/goroot.go, which I've fixed here: https://github.com/tinygo-org/tinygo/pull/1316 Overall I think it should be fine to run these builds in parallel. The only...

I would personally much rather fix the issue than work around it. The Windows issue looks like an actual bug, that's hopefully fixed with #1316. If that PR doesn't fix...

I tested on Windows and found the underlying issue(s): https://github.com/tinygo-org/tinygo/pull/1325

I'm not sure why the test failed, but it might be a concurrency issue.