fake-sms icon indicating copy to clipboard operation
fake-sms copied to clipboard

Idk why it doesn't launch?

Open notime-coder opened this issue 3 years ago • 1 comments

Idk how to launch it in Termux, probably used launch like in closed issue +-1 month ago but i see only this message. Screenshot_20210709-161505

notime-coder avatar Jul 09 '21 13:07 notime-coder

It won't.

Because you are running on an ARM based platform, but the binary is compiled to run on x86 machine. Just run arch command on the target hardware to know your platform ISA. Then clone the repository on a system where Go is installed. Export GOARCH env to make go generate binary for the target platform, then use it.

Here is a guide of how to do cross compilation using GOARCH env variable.

https://opensource.com/article/21/1/go-cross-compiling

Narasimha1997 avatar Jul 09 '21 16:07 Narasimha1997