wasmasmr

Results 5 comments of wasmasmr

I guess using tinygo on android wasn't as straightforward as I though. If I add `"android"` to [this](https://github.com/tinygo-org/tinygo/blob/cf0b7edc78e42038a0bb522b3f1a5b76928e730e/builder/buildid.go#L27) line the build id error goes away, but I still get different...

`git clone --recursive` solves the last error and rewards me with new ones: `clang-14: error no such file or directory: '/data/data/com.termux/files/home/tinygo/lib/compiler-rt-builtins/absvdi2.c'` and a couple other missing files. This was with...

I would also be interested in this. As mentioned [here](https://github.com/tinygo-org/tinygo/blob/release/BUILDING.md) there are dynamically and statically linked build options available. The dynamically linked build currently links against LLVM 13 so either...

Tinygo [v0.24.0](https://github.com/tinygo-org/tinygo/releases/tag/v0.24.0) supports linking against LLVM 14 so it can be installed in termux with `go install`. However when I tried to build a simple test program with the resulting...

Thanks for your response, but that wasn't the issue because `file`could still print it. Adding `"android"` to [this](https://github.com/tinygo-org/tinygo/blob/cf0b7edc78e42038a0bb522b3f1a5b76928e730e/builder/buildid.go#L27) line solved my initial error but gifted me with new never ending...