12-27-2013, 01:37 AM
I'm fighting with cmake to make precompiled headers work on Windows, as well as fix Lua compilation.
Random Chitchat 2012-2016
|
12-27-2013, 01:37 AM
I'm fighting with cmake to make precompiled headers work on Windows, as well as fix Lua compilation.
MCServer doesnt run on my vps .
Does anyone know the latest working version?
12-27-2013, 05:14 AM
Well, I've got the latest version working on an Amazon AWS instance. What vps are you using?
A vps from host1free, it runs debian 7. I have the same problem as tigerw.
12-27-2013, 05:36 AM
What happens if you add the path to liblua to the shared library path?
I think the instructions here work: http://blog.andrewbeacock.com/2007/10/ho...inuxs.html I haven't tested it myself.
12-27-2013, 06:59 AM
Where is liblua though? Installing the lua package doesn't work. Has cmake assumed that the shared library is on every system and not linked it in, or something?
12-27-2013, 07:10 AM
It might be that lua is a static library, and its looking for a dynamic one.
Try the following bash command to find it: Code: cd /usr
12-27-2013, 07:14 AM
No results
How then, would one install this library?
12-27-2013, 07:50 AM
Did you compile the executable yourself? Try compiling by executing this:
Code: cmake -D STATIC_LUA:bool=1 . |
« Next Oldest | Next Newest »
|