-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Compiling on Debian GNU Linux
Marcin Jałocha edited this page Dec 20, 2024
·
23 revisions
The Forgotten Server requires at least gcc 5.0, which is available in Debian 9.
The following command will install Git, CMake, a compiler and the libraries used by The Forgotten Server.
Git will be used to download the source code, and CMake will be used to generate the build files.
Note: boost-filesystem is only needed from 4b800b2 or older
# apt-get install git cmake build-essential libluajit-5.1-dev libmariadb-dev-compat libboost-date-time-dev libboost-system-dev libboost-iostreams-dev libpugixml-dev libcrypto++-dev libfmt-dev zlib1g-dev
Replace libmariadb-dev-compat
with libmysqlclient-dev
on Debian 8 and below.
$ git clone --recursive https://github.com/otland/forgottenserver.git
$ cd forgottenserver
$ mkdir build && cd build
$ cmake ..
$ make