Ayke
Ayke
Yes, now you say it, that should definitely be possible. I've considered it before but didn't see a good way to do it. However, I think this would work, perhaps...
It looks like there is a problem with the new CMake version on Debian stretch. There is also a failure on Windows: ``` mingw32-make: *** No rule to make target...
This generally looks good, thanks for the cleanups! However, I think we should remain on stretch for now. Eventually we'll have to switch, at which point we'll automatically have the...
I haven't looked at the PR itself. What I do want to note, is that there are may things that need to be fixed before multi-core can work correctly. Perhaps...
@Sunidhi-Gaonkar1 just to be clear, are you interested in building a ppc64le `tinygo` binary, building ppc64le Go binaries using TinyGo, or both? Because these two tasks are mostly separated. >...
Quick testing shows that this increases code size by almost 1kB, which is huge. It also tries to access the fault handler on Cortex-M0, which is a problem. I think...
> I discovered a couple of interesting things: if-statements comparing constant strings will optimize away, but switch statements will not Huh that's interesting, I guess this is simply missing in...
@QuLogic I can't seem to reproduce the `getpagesize` issue on the latest dev branch: ``` $ tinygo test os ok os 0.080s $ tinygo version tinygo version 0.26.0-dev linux/amd64 (using...
Yes, I would be in favor of removing those lines. However, doing that would be a breaking change. It is something I've wanted to do for a long time though.
One possible way to solve this is using a C wrapper. Unfortunately we can't use CGo directly (because the `go` toolchain thinks that CGo requires the syscall package which leads...