Elliott Sales de Andrade

Results 335 comments of Elliott Sales de Andrade

Extracting the test into a separate program: ```go package main import ( "io/fs" "log" "os" "strconv" "strings" ) func main() { count := 10001 if len(os.Args) > 1 { var...

Since this seems a more relevant place to follow up than https://github.com/tinygo-org/tinygo/pull/2903#issuecomment-1152944907, I'll post here. We have Go 1.16 in Fedora 35, Go 1.18 in Fedora 36, and Go 1.19...

Oh, actually, since TinyGo 0.24.0 requires golang.org/x/tools 0.1.11, which itself requires Go 1.17, I think Fedora 35 is already unsupported, so its constraints are no longer an issue.

I did not fully test this, but it seems okay, except that I don't think `Glob` is guaranteed to be in any order: golang/go#17153

Annoyingly, it seems stretch is too old to have a reasonably new cmake.

Fixing that failure on Windows depends on how you feel about the inline comment.

Though that being said, 0.23.0 never compiled with Go 1.19, so I can't say if it wouldn't have brought up the same errors. Similarly, the test for `getpagesize` was only...

So I backported #2899 to 0.23.0 and it still failed, so this seems to have always been broken and there just wasn't anything that triggered it?

I don't recall closing this...

Thanks for the pointers. As a first step, I just copied the `clang` special case from `runCCompiler` to `link`, and those can be merged together later if it works. Right...