从Lua调用时未定义的符号

时间:2014-10-01 12:00:56

标签: c lua linker dlopen

我有一个名为" test.so"它使用两个相互引用的库中的函数。如果我在C程序中调用test.so的函数,它就可以正常工作,所以我假设C函数没有错误。

但是,当我从Lua调用它时,由于"未定义的符号"它会引发Seg Fault错误。问题是,符号已定义,我可以在运行nm test.so时看到它。

阅读下面的主题

Lua: C++ modules can't reference eachother, undefined symbol

我尝试创建一个新模块,使用dlopen加载test.so,如Rena所述。

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

#include <stdio.h>
#include <dlfcn.h>

int luaopen_drmaa(lua_State *L){
    printf("Chamou luaopen_test\n");
    if( dlopen("/home/erica/Downloads/test.so", RTLD_NOW | RTLD_GLOBAL) == NULL)
        printf("%s\n", dlerror());
    else
        printf("Chamou dlopen e teve retorno nao null\n");
    return 0;
}

我编译了它:

gcc -g drmaa_lib.c -shared -fpic -I /usr/include/lua5.1 -I /usr/local/include/ -L /usr/local/lib/m -llua5.1 -o drmaa.so

但是当我跑步时,我得到:

$ lua5.1
Lua 5.1.5  Copyright (C) 1994-2012 Lua.org, PUC-Rio
> require "drmaa"
Chamou luaopen_test
Chamou dlopen e teve retorno nao null
> submitJob()
stdin:1: attempt to call global 'submitJob' (a nil value)
stack traceback:
    stdin:1: in main chunk
    [C]: ?

然后我尝试插入主要功能

luaopen_test(L);  

以及主要功能

extern int luaopen_test(lua_State *L);

实际打开lib,但是我收到了这个错误:

$ lua5.1
Lua 5.1.5  Copyright (C) 1994-2012 Lua.org, PUC-Rio
> require "drmaa"
error loading module 'drmaa' from file './drmaa.so':
    ./drmaa.so: undefined symbol: luaopen_test
stack traceback:
    [C]: ?
    [C]: in function 'require'
    stdin:1: in main chunk
    [C]: ?

引用问题的作者并未显示解决方案开发的详细信息。 有没有人知道可能有什么用呢?

提前致谢。

1 个答案:

答案 0 :(得分:2)

我显然做错了,要获得实际打开库的函数我应该使用ldsym函数。 drmaa lib的新代码(加载test.so的代码)是

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

#include <stdio.h>
#include <dlfcn.h>

typedef void Register(lua_State*);

int luaopen_drmaa(lua_State *L){

    void* lib = dlopen("/home/erica/Downloads/test.so", RTLD_NOW | RTLD_GLOBAL);
    if(!lib)
    {
        printf("%s\n", dlerror());
        return 1;
    }

    Register* loadFunc = (Register*)dlsym(lib, "luaopen_test");
    if(!loadFunc)
    {
        printf("%s\n", dlerror());
        return 1;
    }

    loadFunc(L);

    return 0;
}

这个答案基于这个帖子的一些代码:

Lua shared object loading with C++ segfaults