Lua:C模块不能引用彼此,未定义的符号

我创建了两个模块(共享对象)cpu和SaveState作为模拟器的一部分.两者都独立编译成.so文件,并在运行时通过Lua脚本使用require()加载;即:
SaveState = require("SaveState")
cpu = require("cpu")

cpu中,有一个在SaveState上运行的方法

int cpu::save_state(SaveState *state) {
    state->begin_section(savestate_namespace,savestate_data_size);

    state->write16(this->reg.af);
    state->write16(this->reg.bc);
    state->write16(this->reg.de);
    state->write16(this->reg.hl);
    state->write16(this->reg.sp);
    state->write16(this->reg.pc);
    state->write8 (this->interrupts_enabled);
    state->write8 (this->irq_flags);
    state->write8 (this->ie_flags);
    state->write8 (this->halted);
    state->write8 (this->halt_bug);
    state->write8 (this->extra_cycles);
    state->write64(this->total_cycles);
    state->write64(this->idle_cycles);

    return SaveState::OK;
}

它编译得很好,但require(“cpu”)行失败:

lua5.1: error loading module 'cpu' from file './src/cpu/build/cpu.so':
    ./src/cpu/build/cpu.so: undefined symbol: _ZN9SaveState7write64Ey

使用nm -D我可以在savestate.so中看到确切的符号,但在运行时它不会出于某种原因.

解决方法

我设法通过编写第三个模块来解决这个问题,该模块在其他两个模块之前加载,并在其luaopen_module方法调用dlopen()
void *res = dlopen("src/savestate/build/savestate.so",RTLD_Now | RTLD_GLOBAL);

我不确定这是最好的解决方案,但它似乎可以解决问题. (我将不得不将其概括为不使用硬编码路径等等……)

相关文章

1.github代码实践源代码是lua脚本语言,下载th之后运行thmai...
此文为搬运帖,原帖地址https://www.cnblogs.com/zwywilliam/...
Rime输入法通过定义lua文件,可以实现获取当前时间日期的功能...
localfunctiongenerate_action(params)localscale_action=cc...
2022年1月11日13:57:45 官方:https://opm.openresty.org/官...
在Lua中的table(表),就像c#中的HashMap(哈希表),key和...