gpt4 book ai didi

c++ - Lua 5.3 undefined reference

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:38 25 4
gpt4 key购买 nike

我正在尝试学习如何将 lua 嵌入到 C 程序中,但我不擅长阅读技术文档,而且我还没有找到任何当前教程。这是我的程序:

#include <iostream>
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>


void report_errors(lua_State*, int);

int main(int argc, char** argv) {
for (int n = 1; n < argc; ++n) {
const char* file = argv[n];
lua_State *L = luaL_newstate();

luaL_openlibs(L);

std::cerr << "-- Loading File: " << file << std::endl;

int s = luaL_loadfile(L, file);

if (s == 0) {
s = lua_pcall(L, 0, LUA_MULTRET, 0);
}

report_errors(L, s);
lua_close(L);
std::cerr << std::endl;
}
return 0;
}

void report_errors(lua_State *L, int status) {
if (status) {
std::cerr << "-- " << lua_tostring(L, -1) << std::endl;
lua_pop(L, 1);
}
}

编译器给出了 luaL_newstate、luaL_openlibs、luaL_loadfilex、lua_pcallk 和 lua_close 的 undefined reference 错误。我在一台 Windows 计算机上使用 Code::Blocks,我已将 lua include 目录添加到所有搜索路径,并将 liblua53.a 添加到链接库。 IDE 自动完成 header 名称,解析器显示大部分 lua 函数,但通过简短搜索,我发现解析器找不到 lua_newstate 或 luaL_newstate。为什么它找到了一些功能而不是其他功能?

最佳答案

在 C++ 中,您应该包含 lua.hpp 而不是 lua.hlua.h 没有定义 extern "C" block 来阻止 c++ 编译器的名称重整。

关于c++ - Lua 5.3 undefined reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30084681/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com