文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

加载 dll 失败。找不到指定的模块

2024-04-04 23:55

关注

大家好,今天本人给大家带来文章《加载 dll 失败。找不到指定的模块》,文中内容主要涉及到,如果你对Golang方面的知识点感兴趣,那就请各位朋友继续看下去吧~希望能真正帮到你们,谢谢!

问题内容

我有一些用 golang(在 ubuntu 上)编写的代码,并尝试打包为 windows exe,但不幸的是,由于 github 项目的一些 cgo 依赖项,我最终不得不按照以下方式将我的包构建为 dll这个答案https://stackoverflow.com/a/49079049/4750381,因为它不会编译为windows的可运行exe文件(即使使用mingw)。

我的编译行是:

goos=windows goarch=386 cgo_enabled=1 cc=i686-w64-mingw32-gcc go build -buildmode=c-shared -o main.dll main.go

我的主包代码如下所示:

package main

import (
    "c"
    "fmt"

    console "github.com/asynkronit/goconsole"
    "github.com/asynkronit/protoactor-go/actor"
    "path/to/repo"
)

const cfgpath string = "./config.json"

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

func dllrun() {
    // used for running the test and various other operations, thus generally all lines except 1 will be commented out

    ctx := actor.emptyrootcontext
    props := actor.propsfromproducer(testmachine.newtestmachine(cfgpath))
    pid, err := ctx.spawnnamed(props, "tm")
    if err != nil {
        panic(err)
    }
    defer func() { // run after the read line fucntion executes and terminates the program
        ctx.poison(pid)
    }()
    console.readline()
}

我编写了另一个 go 脚本(这次使用 windows)来尝试加载和读取该 dll 文件:

import (
    "syscall"
)

func main() {
    mydll := syscall.newlazydll("c:/users/konyenso/documents/dllopener/main.dll")
    maincall := mydll.newproc("dllrun")

    ret, _, err := maincall.call()
    if err != nil {
        panic(err) // calling mydll.maincall failed
    }

    if ret == 0 {
        print("could not set the desired attributes")
        // todo: call getlasterror to get more information
    }

    print("ok")
}

但是现在即使我的文件路径没问题,我总是收到以下错误:

panic: failed to load c:/users/konyenso/documents/dllopener/main.dll: the specified module could not be found.

goroutine 1 [running]:
syscall.(*lazyproc).mustfind(0x13019400)
        c:/go/src/syscall/dll_windows.go:311 +0x42
syscall.(*lazyproc).call(0x13019400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4623e0)
        c:/go/src/syscall/dll_windows.go:327 +0x21
main.main()
        c:/users/konyenso/documents/dllopener/main.go:11 +0xa5

请有人告诉我我做错了什么?我一整天都在对此进行调整,但收效甚微。理想情况下,我想直接从 ubuntu 构建一个 exe,而不需要 dll,但如果这不可行,我至少希望能够从另一个 exe 文件运行我的 dll。 感谢您的帮助。

************ 编辑**************************** 所以我写了一些c++代码来尝试打开dll文件(制作了64位和32位版本)

#define UNICODE
#include <windows.h>
#include <iostream>


typedef int (__stdcall *f_funci)();

int main()
{
  HINSTANCE hGetProcIDDLL = LoadLibrary((LPCWSTR)"C:\\Users\\konyenso\\Documents\\DLLOpener\\main.dll");

  if (!hGetProcIDDLL) {
    std::cout << "could not load the dynamic library" << std::endl;
    return EXIT_FAILURE;
  }

  // resolve function address here
  f_funci funci = (f_funci)GetProcAddress(hGetProcIDDLL, "dllRun");
  if (!funci) {
    std::cout << "could not locate the function" << std::endl;
    return EXIT_FAILURE;
  }

  std::cout << "funci() returned " << funci() << std::endl;

  return EXIT_SUCCESS;
}

同样的问题: 屏幕截图显示无法加载

正如您从下面的屏幕截图中看到的,文件路径匹配,所以我不知道发生了什么。 显示已确认路径的屏幕截图


解决方案


首先,你需要像这样导出dll方法:

// export dllRun
func dllRun() {

有一个简单的例子, https://github.com/whtiehack/checkdll_log

第二, go main 程序无法正确加载 go dll 因为 https://github.com/golang/go/issues/34168 https://github.com/golang/go/issues/22192

综上所述,在windows中,一个主程序中不能有两个以上的go运行时

终于介绍完啦!小伙伴们,这篇关于《加载 dll 失败。找不到指定的模块》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~编程网公众号也会发布Golang相关知识,快来关注吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯