dongxie3352 2018-03-02 22:44
浏览 204

使用Golang 1.10无法编译Windows DLL

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条回答 默认 最新

  • douzhi3776 2018-03-02 23:42
    关注
    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

    评论

报告相同问题?

悬赏问题

  • ¥15 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!