ldbus icon indicating copy to clipboard operation
ldbus copied to clipboard

When "require"ing the module, throws a undefined symbol error

Open Nickiel12 opened this issue 2 years ago • 2 comments

When I'm importing ldbus, it gives this error

error loading module 'ldbus' from file '/usr/lib/lua/5.3/ldbus.so 
                             /usr/lib/lua/5.3/ldbus.so: undefined symbol: lua_getiuservalue

Nickiel12 avatar May 19 '22 17:05 Nickiel12

I would like to note that I am not using luaJIT as far as I know, I am using the cli that comes up with /bin/lua5.3

Nickiel12 avatar May 19 '22 18:05 Nickiel12

/usr/lib/lua/5.3/ldbus.so: undefined symbol: lua_getiuservalue

lua_getiuservalue is new in lua 5.4 You've somehow compiled for 5.4 but installed to the 5.3 directory.

daurnimator avatar May 20 '22 04:05 daurnimator