Trouble compiling Windows DLL using Golang 1.10

拜拜、爱过 提交于 2019-12-24 03:21:56

问题


I'm having issues building a Windows DLL in Golang 1.10, which is supported in this latest version:

"The various build modes have been ported to more systems. Specifically, c-shared now works on linux/ppc64le, windows/386, and windows/amd64;" (Source: https://golang.org/doc/go1.10)

I have a very simple program right now (main.go) that only exports one function "Test", but am having issues when using the following "go build" command: env GOOS=windows GOARCH=386 go build -buildmode=c-shared main.go

Specifically, receiving the can't load package: package main: build constraints exclude all Go files in [PATH] error. The source code for main.go is shown below:

package main

import (
    "C"
    "fmt"
)

func main() {
    fmt.Println("from main")
}

//export Test
func Test() string {
    return "this is a test"
}

I've never encountered this error before and building without specifying GOOS and GOARCH works. Hoping someone has encountered this issue and can help me out.


回答1:


  1. Make sure you have MinGW installed on Ubuntu: sudo apt-get install gcc-mingw-w64-i686 and sudo apt-get install gcc-mingw-w64-x86-64

  2. Compile using the following commands: env GOOS=windows GOARCH=386 CGO_ENABLED=1 CC=i686-w64-mingw32-gcc go build -buildmode=c-shared -o main.dll main.go and env GOOS=windows GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -buildmode=c-shared -o main.dll main.go

  3. Verify generated DLL works by testing the "Test" export: rundll32.exe main.dll,Test



来源:https://stackoverflow.com/questions/49078510/trouble-compiling-windows-dll-using-golang-1-10

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!