我正在尝试使用 gomobile 构建一个 android 应用程序,但是命令gomobile install
和gomobile build
失败gomobile: EOF
。在此错误之前,我收到此错误:
# golang.org/x/mobile/gl
In file included from /root/go/src/golang.org/x/mobile/gl/gl.go:17:0:
work.h:6:23: fatal error: GLES2/gl2.h: No such file or directory
compilation terminated.
但它是固定的yum install make gcc mesa-libGLES-devel mesa-libEGL-devel
。
该应用程序主要是一个网络应用程序。这里是进口。是只有某些软件包适用于 gomobile 还是全部适用?
"golang.org/x/mobile/app"
"golang.org/x/net/websocket"
"os/exec"
"flag"
"fmt"
log "github.com/golang/glog"
"io/ioutil"
"net"
"net/http"
"net/url"
"strconv"
操作系统:Fedora 22。
更多信息:我能够构建https://github.com/golang/mobile/blob/master/example/network/main.go所以我只能假设问题是特定于我的应用程序的。