Lua 5.4,在 Windows 上需要一个 Lua 模块 DLL(有问题)

我想深入了解 Lua 的内部并与其有所关联。我想挖掘 C API 会给我一些很好的知识。我用纯 C 编写了一个非常小的模块(parser.dll):

#include "parser.h"
#pragma comment(lib, "lua5.4.4.lib")

#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"

int luaL_parse(lua_State* L) {
    const char* path = lua_tostring(L, 1);
    const char* cwd = lua_tostring(L, 2);

    lua_getglobal(L, "print");
    lua_pushstring(L, "Did this run?");
    lua_callk(L, 1, 0, 0, NULL);

    return 0;
}

static const struct luaL_Reg exports[] = {
    {"parse", luaL_parse},
    {NULL, NULL}
};

LUAMOD_API int luaopen_parser(lua_State* L) {
    luaL_newlib(L, exports);
    return 1;
}

Parser.h:

#pragma once

#ifndef lua_h
#include "lua.h"
#include "lauxlib.h"
#endif

int luaL_parse(lua_State* L);

它成功编译了。每当我尝试要求它(通过 require("parser")),我读到这个:

lua54.exe: error loading module 'parser' from file 'C:\Users\user\Desktop\Lua\parser.dll':
        找不到指定的模块。

我觉得我的 vs19 项目配置中有更多的错误,但我不相信我可以在这里倾倒一个文本文件。如果你有什么提示,请告诉我!我不确定如何解决问题了,我一直在试图解决它一段时间了。

一个可能很重要的细节是,我正在使用 Lua 5.4.4 源代码构建。也就是说,我下载了源代码,并将其作为额外的包含目录添加到其中。

在 Lua 方面,即使使用 funcname @"*",我也没有得到 package.loadlib 不同的结果。那还是 nil。

更新,我通过依赖项查看器(https://github.com/lucasg/Dependencies)遍历了一遍,当我单击 Lua.5.4.4.dll 依赖项时,它说它在磁盘上找不到。库文件可能有问题吗?我不确定,因为程序仍然编译良好,没有未解决的符号。

原文链接 https://stackoverflow.com/questions/70894932

点赞