4

我正在尝试在 Linux 上设置我的 Go 编译器,它可以为任何其他架构或平台编译项目。我正在使用来自官方 Ubuntu 14.04 存储库的默认软件包,并且我使用的是 64 位系统。此配置允许我仅针对 Linux 和 64 位系统进行编译。至少我想为 32 位 Linux 甚至 32 位 Windows 系统编译。有可能以某种方式做吗?

另外一件事是我想使用两个 Go 绑定: https ://github.com/mattn/go-gtk和https://github.com/mattn/go-webkit

我正在使用 go-webkit 示例代码进行测试:

package main

import (
    "os"
    "github.com/mattn/go-gtk/gtk"
    "github.com/mattn/go-webkit/webkit"
)

const HTML_STRING = `
<doctype html>
<meta charset="utf-8"/>
<style>
div { font-size: 5em }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(function() {
    $('#hello1').slideDown('slow', function() {
        $('#hello2').fadeIn()
    })
})
</script>
<div id="hello1" style="display: none">Hello</div>
<div id="hello2" style="display: none">世界</div>
</div>
`

const MAP_EMBED = `
<style> *{ margin : 0; padding : 0; } </style>
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=osaka&amp;aq=&amp;sll=34.885931,-115.180664&amp;sspn=29.912003,39.506836&amp;brcurrent=3,0x6000e86b2acc70d7:0xa399ff48811f596d,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E5%A4%A7%E9%98%AA%E5%BA%9C%E5%A4%A7%E9%98%AA%E5%B8%82&amp;ll=34.693738,135.502165&amp;spn=0.471406,0.617294&amp;z=11&amp;output=embed"></iframe>
`

func main() {
    gtk.Init(nil)
    window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
    window.SetTitle("webkit")
    window.Connect("destroy", gtk.MainQuit)

    vbox := gtk.NewVBox(false, 1)

    entry := gtk.NewEntry()
    entry.SetText("http://golang.org/")
    vbox.PackStart(entry, false, false, 0)

    swin := gtk.NewScrolledWindow(nil, nil)
    swin.SetPolicy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
    swin.SetShadowType(gtk.SHADOW_IN)

    webview := webkit.NewWebView()
    webview.Connect("load-committed", func() {
        entry.SetText(webview.GetUri())
    })
    swin.Add(webview)

    vbox.Add(swin)

    entry.Connect("activate", func() {
        webview.LoadUri(entry.GetText())
    })
    button := gtk.NewButtonWithLabel("load String")
    button.Clicked(func() {
        webview.LoadString("hello Go GTK!", "text/plain", "utf-8", ".")
    })
    vbox.PackStart(button, false, false, 0)

    button = gtk.NewButtonWithLabel("load HTML String")
    button.Clicked(func() {
        webview.LoadHtmlString(HTML_STRING, ".")
    })
    vbox.PackStart(button, false, false, 0)

    button = gtk.NewButtonWithLabel("Google Maps")
    button.Clicked(func() {
        webview.LoadHtmlString(MAP_EMBED, ".")
    })
    vbox.PackStart(button, false, false, 0)

    window.Add(vbox)
    window.SetSizeRequest(600, 600)
    window.ShowAll()

    proxy := os.Getenv("HTTP_PROXY")
    if len(proxy) > 0 {
        soup_uri := webkit.SoupUri(proxy)
        webkit.GetDefaultSession().Set("proxy-uri", soup_uri)
        soup_uri.Free()
    }
    entry.Emit("activate")
    gtk.Main()
}

如果我用它编译它,它工作正常

go build

如果我尝试使用其他设置编译它:

GOOS=windows GOARCH=386 go build
GOARCH=386 go build

我收到此错误:

webview.go:5:2:/home/yeeapple/Documents/Coding/Go/Source/src/github.com/mattn/go-gtk/gtk 中没有可构建的 Go 源文件

webview.go:6:2:/home/yeeapple/Documents/Coding/Go/Source/src/github.com/mattn/go-webkit/webkit 中没有可构建的 Go 源文件

我看到的另一件事是,在 GOPATH 目录和 pkg 文件夹中只有带有 *.a 文件的“linux_amd64”文件夹。

例如,如果没有额外的导入,我可以为其他系统编译 Go 文件。跨平台编译适用于:

package main

import "fmt"

func main() {
    fmt.Printf("hello, world\n")
}

版本:

$ go version
go version go1.2.1 linux/amd64

$ gccgo --version
gccgo (Ubuntu 4.9-20140406-0ubuntu1) 4.9.0 20140405 (experimental) [trunk revision 209157]
Copyright (C) 2014 Free Software Foundation, Inc.
4

1 回答 1

6

在 Go 1.2 中,cgo交叉编译代码时该功能被禁用。这意味着任何包含的源文件import "C"都不会被编译,这使得许多包无法使用。因此,当您的简单“hello world”程序编译时,一个等效的 usingcgo将失败:

package main

/*
#include <stdlib.h>
#include <stdio.h>
*/
import "C"
import "unsafe"

func main() {
        hello := C.CString("Hello world")
        defer C.free(unsafe.Pointer(hello))
        C.puts(hello)
}

在 amd64 Linux 系统上,如果您尝试为 x86 编译,您将遇到构建失败:

$ GOARCH=386 go build hello.go
can't load package: no buildable Go source files in /...

要编译此程序,您还需要将环境变量设置CGO_ENABLED=1为手动启用cgo。这将导致它尝试编译程序,但如果您没有安装 x86 编译器,它仍然会失败。既然你说你使用的是 Ubuntu,你可以通过安装gcc-multilib包来做到这一点:

$ sudo apt-get install gcc-multilib

安装后,您应该能够编译程序:

$ GOARCH=386 CGO_ENABLED=1 go build hello.go
$ file hello
hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=..., not stripped

虽然 Ubuntu 附带了一个 Windows 交叉编译工具链(在mingw32包中),但您仍然会在编译 Windows 二进制文件时遇到问题:

$ GOOS=windows GOARCH=386 CGO_ENABLED=1 go build hello.go 
go build runtime/cgo: cannot use cgo when compiling for a different operating system

GO 1.3 中不再存在此检查,因此您可能对该版本有一些运气。

现在拥有可用的交叉编译器工具链只是战斗的一部分:您还需要为可用的目标架构编译的依赖项的版本。CFLAGS这对于像 WebKit 这样大的东西来说并不是一件容易的事,但是您可能可以使用,LDFLAGSPKG_CONFIG_PATH环境变量将 Go 指向一个适当的副本。

于 2014-06-22T12:56:24.720 回答