显示页面过去修订反向链接回到顶部 本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。 <!DOCTYPE markdown> # FreeBSD ## Install Dependencies You need to install the build and runtime dependancies: ``` pkg install mysql80-server pkg install cmake pkg install boost-all ``` ## Install Azerothcore Clone the project ``` git clone https://github.com/azerothcore/azerothcore-wotlk.git --branch master --single-branch azerothcore ``` Enter the project's directory ``` cd azerothcore ``` Create the build directory ``` mkdir build ``` Enter the directory ``` cd build ``` Configure azerothcore for building ``` cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static ``` Compile Azerothcore ``` make -j<number of cores> ``` Install Azerothcore ``` make install ``` docs-en/freebsd.md.txt 最后更改: 2024/03/15 19:08由 127.0.0.1