win10 golang打包在安卓可执行的文件 2018-11-02

尚酷米C · · 1916 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

  1. cmd跳转到我们刚写的文件的目录如:test_linux.go
    2.设置在linux的运行环境,以下命令在cmd中执行
E:\gogo\main>adb   shell getprop ro.product.cpu.abi #获取安卓手机的cpu信息
arm64-v8a

E:\gogo\main>set GOARCH=arm  

E:\gogo\main>set GOOS=linux

E:\gogo\main>go build -o target-android test_linux.go

  1. 推送文件到安卓上并且adb shell中执行
E:\gogo\main>adb push ./target-android /data/local/tmp  # 推送文件
./target-android: 1 file pushed. 7.7 MB/s (1957989 bytes in 0.244s)

E:\gogo\main>adb shell chmod 777 /data/local/tmp/target-android # 授权 直接777就是这么爽

E:\gogo\main>adb shell
shell@mx5:/ $ cd /data/local/tmp
shell@mx5:/data/local/tmp $ ./target-android  
go runs onlinux
shell@mx5:/data/local/tmp $

//test_linux.go
package main

import (
    "fmt"
    "runtime"
)

func main(){
    fmt.Print("go runs on")
    switch os:=runtime.GOOS;os {
    case "darwin":
        fmt.Println("os x")
    case "linux":
        fmt.Println("linux")
    default:
        fmt.Println("%s.",os)

    }
}

参考:https://blog.csdn.net/lszy24/article/details/78948130


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:尚酷米C

查看原文:win10 golang打包在安卓可执行的文件 2018-11-02

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1916 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传