OTS Guide
Otland Forums
Otland on GitHub
Download TFS
Search…
Introduction
Compiling
Compile on Arch
Compiling on CentOS
Compiling on Debian GNU Linux
Compiling on Fedora
Compiling on FreeBSD
Compiling on Gentoo
Compiling on Mac OS X
Compiling on Ubuntu
Compiling on Windows
Compiling on Windows (vcpkg)
Running your first OT Server
TFS documentation
Glossary
Running your first ubuntu linux OT
Powered By
GitBook
Compile on Arch
1. Install the required software
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.
1
$ sudo pacman -Syu
2
$ sudo pacman -S base-devel git cmake luajit boost boost-libs libmariadbclient pugixml crypto++ fmt
Copied!
2. Download the source code
1
$ git clone https://github.com/otland/forgottenserver.git
Copied!
3. Generate the build files
1
$ cd forgottenserver
2
$ cmake . -B build
Copied!
4. Build
1
$ make -C build
Copied!
The executable will be located in
./build/tfs
Previous
Compiling
Next
Compiling on CentOS
Last modified
2mo ago
Copy link