简体   繁体   English

无法使用 liblua.a (lua5.3) 编译的 C 程序加载 C 动态库

[英]Cannot Load C dynamic library with C Program compile with liblua.a (lua5.3)

I first download lua-5.3.5 , and put the source in my working directory and compile it with我首先下载 lua-5.3.5 ,并将源代码放在我的工作目录中并使用

make linux

so I got the liblua.a and lua binary file in ./lua-5.3.5/src.所以我在 ./lua-5.3.5/src 中得到了 liblua.a 和 lua 二进制文件。

And then I write a C Dynamic Library like this :然后我写了一个这样的 C 动态库:

#include <stdio.h>
#include <math.h>
#include <stdarg.h>
#include <stdlib.h>

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

static int l_sin(lua_State *L) 
{   
    double d = luaL_checknumber(L, 1); 
    lua_pushnumber(L, sin(d));  /* push result */

    return 1;  /* number of results */
}


static const struct luaL_Reg mylib[] = { 
    {"mysin", l_sin},
    {NULL, NULL}
};

extern int luaopen_mylib(lua_State* L)
{
    luaL_newlib(L, mylib);

    return 1;
}

I compile with command :我用命令编译:

gcc mylib.c -I ./lua-5.3.5/src -fPIC -shared -o mylib.so -Wall

And if I use the original lua binary, it can be loaded如果我使用原始的 lua 二进制文件,它可以被加载

user00:lua/ $ ./lua-5.3.5/src/lua                                                                                                                                                                    
Lua 5.3.5  Copyright (C) 1994-2018 Lua.org, PUC-Rio
> require 'mylib'
table: 0xd13170
> 

But If I write AC program linked with liblua.a, it cannot load the dynamic library.但是如果我写一个链接liblua.a的AC程序,它就不能加载动态库。

#include <stdio.h>
#include <string.h>

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

int main(void){
    char buff[256];
    int error;
    lua_State *L  = luaL_newstate();
    luaL_openlibs(L);

    while(fgets(buff, sizeof(buff), stdin) != NULL)
    {
        error = luaL_loadbuffer(L, buff, strlen(buff), "line") ||
           lua_pcall(L, 0, 0 , 0);
        if(error)
        {
            fprintf(stderr, "%s", lua_tostring(L, -1));
            lua_pop(L, 1);
        }
    }

    lua_close(L);
    return 0;
}

Compile :编译:

gcc test01.c -L ./lua-5.3.5/src/ -llua -lstdc++ -o test01 -lm -ldl -I ./lua-5.3.5/src

Run:跑:

user00:lua/ $ ./test01                                                                                                         
require 'mylib'
error loading module 'mylib' from file './mylib.so':
    ./mylib.so: undefined symbol: luaL_setfuncs

You need to export the Lua API functions from your executable.您需要从可执行文件中导出 Lua API 函数。 For this, link it with -Wl,-E as the Makefile from the Lua distribution does.为此,将它与 -Wl,-E 链接,就像 Lua 发行版中的 Makefile 所做的那样。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM