• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling someone will compile the latest tfs for me. under Ubuntu?

danio4don

AlatharStudio
Joined
Jun 15, 2012
Messages
383
Reaction score
56
Location
Poland
someone will compile the latest tfs for me. under Ubuntu? Unfortunately, when I try to compile it, it crashes by itself. I just need a file compiled from the latest TFS
 
IDK what TFS it is, but it says you don't have Lua/LuaJIT installed in Linux, so maybe this will fix it (Ubuntu 24.04):
Code:
apt install liblua5.4-dev libluajit-5.1-dev
If it shows some error you can reduce Lua to 5.3:
Code:
apt install liblua5.3-dev libluajit-5.1-dev
or just ignore it:
Code:
apt install libluajit-5.1-dev
 
IDK what TFS it is, but it says you don't have Lua/LuaJIT installed in Linux, so maybe this will fix it (Ubuntu 24.04):
Code:
apt install liblua5.4-dev libluajit-5.1-dev
If it shows some error you can reduce Lua to 5.3:
Code:
apt install liblua5.3-dev libluajit-5.1-dev
or just ignore it:
Code:
apt install libluajit-5.1-dev
still crashes the same error
 
still crashes the same error
What engine is it? Some TFS 1.2 that cannot detect LuaJIT 2.1 and new Lua?
Post automatically merged:

still crashes the same error
I did some updates on Ubuntu 22, but it looks like newest TFS requires Ubuntu 24.04.
You will have to install Ubuntu 24 and:
Code:
apt install cmake build-essential ninja-build libcrypto++-dev libfmt-dev liblua5.4-dev libluajit-5.1-dev libmysqlclient-dev libboost-iostreams-dev libboost-locale-dev libboost-system-dev libpugixml-dev libboost-filesystem-dev libboost-json-dev
to compile TFS 1.6+.
 
Last edited:
Back
Top