Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

...

Recommendation: Use apt-get with stable source list instead of install packages. We recommend the latest stable version of your distribution. Avoid LTS versions since we We usually update requirements to the lastest stable Debian version. Mixing Avoid mixing stable with experimental packages as it may break your linux OS.

Debian 10.x (you will need to use su to install the packages)

Bloque de código
languagebash
apt-get update
apt-get install git clang cmake make gcc g++ libmariadbclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mariadb-server p7zip default-libmysqlclient-dev
update-alternatives --install /usr/bin/cc cc /usr/bin/clang 100
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang 100

Ubuntu 19.10/20.04 (you will need to use sudo to install the packages).

Bloque de código
languagebash
apt-get update
apt-get install git clang cmake make gcc g++ libmariadbclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev libboost-all-dev mariadb-server p7zip libmariadb-client-lgpl-dev-compat
update-alternatives --install /usr/bin/cc cc /usr/bin/clang 100
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang 100


Info

Anything under this is not tested by TrinityCore developers.

Not supported: Debian 9 or lower. Ubuntu 19.04 or lower.

AVOID UBUNTU LTS versions and CentOS.

Fedora based distributions

...