mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
2e1f6bc56d
* replace exit with assert in test_single_page * improve save_raw_single_page docs option * More grammar fixes * "Built from" link in new tab * fix mistype * Example of include in docs * add anchor to meeting form * Draft of translation helper * WIP on translation helper * Replace some fa docs content with machine translation * add normalize-en-markdown.sh * normalize some en markdown * normalize some en markdown * admonition support * normalize * normalize * normalize * support wide tables * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * lightly edited machine translation of introdpection.md * lightly edited machhine translation of lazy.md * WIP on translation utils * Normalize ru docs * Normalize other languages * some fixes * WIP on normalize/translate tools * add requirements.txt * [experimental] add es docs language as machine translated draft * remove duplicate script * Back to wider tab-stop (narrow renders not so well)
135 lines
4.2 KiB
Markdown
135 lines
4.2 KiB
Markdown
# Cómo construir ClickHouse para el desarrollo {#how-to-build-clickhouse-for-development}
|
|
|
|
El siguiente tutorial se basa en el sistema Ubuntu Linux.
|
|
Con los cambios apropiados, también debería funcionar en cualquier otra distribución de Linux.
|
|
Plataformas compatibles: x86\_64 y AArch64. El soporte para Power9 es experimental.
|
|
|
|
## Instalar Git, CMake, Python y Ninja {#install-git-cmake-python-and-ninja}
|
|
|
|
``` bash
|
|
$ sudo apt-get install git cmake python ninja-build
|
|
```
|
|
|
|
O cmake3 en lugar de cmake en sistemas más antiguos.
|
|
|
|
## Instalar GCC 9 {#install-gcc-9}
|
|
|
|
Hay varias formas de hacer esto.
|
|
|
|
### Instalar desde un paquete PPA {#install-from-a-ppa-package}
|
|
|
|
``` bash
|
|
$ sudo apt-get install software-properties-common
|
|
$ sudo apt-add-repository ppa:ubuntu-toolchain-r/test
|
|
$ sudo apt-get update
|
|
$ sudo apt-get install gcc-9 g++-9
|
|
```
|
|
|
|
### Instalar desde fuentes {#install-from-sources}
|
|
|
|
Mira [Sistema abierto.](https://github.com/ClickHouse/ClickHouse/blob/master/utils/ci/build-gcc-from-sources.sh)
|
|
|
|
## Usar GCC 9 para compilaciones {#use-gcc-9-for-builds}
|
|
|
|
``` bash
|
|
$ export CC=gcc-9
|
|
$ export CXX=g++-9
|
|
```
|
|
|
|
## Fuentes de ClickHouse de pago {#checkout-clickhouse-sources}
|
|
|
|
``` bash
|
|
$ git clone --recursive git@github.com:ClickHouse/ClickHouse.git
|
|
```
|
|
|
|
o
|
|
|
|
``` bash
|
|
$ git clone --recursive https://github.com/ClickHouse/ClickHouse.git
|
|
```
|
|
|
|
## Construir ClickHouse {#build-clickhouse}
|
|
|
|
``` bash
|
|
$ cd ClickHouse
|
|
$ mkdir build
|
|
$ cd build
|
|
$ cmake ..
|
|
$ ninja
|
|
$ cd ..
|
|
```
|
|
|
|
Para crear un ejecutable, ejecute `ninja clickhouse`.
|
|
Esto creará el `dbms/programs/clickhouse` ejecutable, que se puede usar con `client` o `server` argumento.
|
|
|
|
# Cómo construir ClickHouse en cualquier Linux {#how-to-build-clickhouse-on-any-linux}
|
|
|
|
La compilación requiere los siguientes componentes:
|
|
|
|
- Git (se usa solo para pagar las fuentes, no es necesario para la compilación)
|
|
- CMake 3.10 o más reciente
|
|
- Ninja (recomendado) o Hacer
|
|
- Compilador de C ++: gcc 9 o clang 8 o más reciente
|
|
- Enlazador: lld u oro (el clásico GNU ld no funcionará)
|
|
- Python (solo se usa dentro de la compilación LLVM y es opcional)
|
|
|
|
Si todos los componentes están instalados, puede compilar de la misma manera que los pasos anteriores.
|
|
|
|
Ejemplo para Ubuntu Eoan:
|
|
|
|
sudo apt update
|
|
sudo apt install git cmake ninja-build g++ python
|
|
git clone --recursive https://github.com/ClickHouse/ClickHouse.git
|
|
mkdir build && cd build
|
|
cmake ../ClickHouse
|
|
ninja
|
|
|
|
Ejemplo de OpenSUSE Tumbleweed:
|
|
|
|
sudo zypper install git cmake ninja gcc-c++ python lld
|
|
git clone --recursive https://github.com/ClickHouse/ClickHouse.git
|
|
mkdir build && cd build
|
|
cmake ../ClickHouse
|
|
ninja
|
|
|
|
Ejemplo de Fedora Rawhide:
|
|
|
|
sudo yum update
|
|
yum --nogpg install git cmake make gcc-c++ python2
|
|
git clone --recursive https://github.com/ClickHouse/ClickHouse.git
|
|
mkdir build && cd build
|
|
cmake ../ClickHouse
|
|
make -j $(nproc)
|
|
|
|
# Usted no tiene que construir ClickHouse {#you-dont-have-to-build-clickhouse}
|
|
|
|
ClickHouse está disponible en binarios y paquetes preconstruidos. Los binarios son portátiles y se pueden ejecutar en cualquier tipo de Linux.
|
|
|
|
Están diseñados para lanzamientos estables, preestablecidos y de prueba, siempre que para cada compromiso con el maestro y para cada solicitud de extracción.
|
|
|
|
Para encontrar la construcción más fresca de `master`, ir a [se compromete página](https://github.com/ClickHouse/ClickHouse/commits/master), haga clic en la primera marca de verificación verde o cruz roja cerca de confirmar, y haga clic en “Details” enlace justo después “ClickHouse Build Check”.
|
|
|
|
# Cómo construir el paquete Debian ClickHouse {#how-to-build-clickhouse-debian-package}
|
|
|
|
## Instalar Git y Pbuilder {#install-git-and-pbuilder}
|
|
|
|
``` bash
|
|
$ sudo apt-get update
|
|
$ sudo apt-get install git python pbuilder debhelper lsb-release fakeroot sudo debian-archive-keyring debian-keyring
|
|
```
|
|
|
|
## Fuentes de ClickHouse de pago {#checkout-clickhouse-sources-1}
|
|
|
|
``` bash
|
|
$ git clone --recursive --branch master https://github.com/ClickHouse/ClickHouse.git
|
|
$ cd ClickHouse
|
|
```
|
|
|
|
## Ejecutar secuencia de comandos de lanzamiento {#run-release-script}
|
|
|
|
``` bash
|
|
$ ./release
|
|
```
|
|
|
|
[Artículo Original](https://clickhouse.tech/docs/es/development/build/) <!--hide-->
|