How can i run this Go code in my Android? (in Fedora 15 its working).
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
|
|
|
You have to compile it for ARM, and thankfully it is very easy with Go's compilers:
The executive binary (5.out) will be runnable on Android. Just copy it there and run with shell. More info here. |
|||||||||||||
|
|
With Go 1.0, the compilers changed from separate compiler executables for different target architectures to a single compiler executable. Thus, the process of compiling for ARM is slightly different from Go 1.0 on:
The (environment) variables GOOS and GOARCH have to be set to match the android environment, which is a linux OS and an ARM hardware architecture. Then you can use |
|||||||||||
|