2018-12-10 09:19:32 +00:00
|
|
|
# 如何构建 ClickHouse 发布包
|
|
|
|
|
|
|
|
## 安装 Git 和 Pbuilder
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install git pbuilder debhelper lsb-release fakeroot sudo debian-archive-keyring debian-keyring
|
|
|
|
```
|
|
|
|
|
|
|
|
## 拉取 ClickHouse 源码
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone --recursive --branch stable https://github.com/yandex/ClickHouse.git
|
|
|
|
cd ClickHouse
|
|
|
|
```
|
|
|
|
|
|
|
|
## 运行发布脚本
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./release
|
|
|
|
```
|
|
|
|
|
|
|
|
# 如何在开发过程中编译 ClickHouse
|
|
|
|
|
|
|
|
以下教程是在 Ubuntu Linux 中进行编译的示例。
|
|
|
|
通过适当的更改,它应该可以适用于任何其他的 Linux 发行版。
|
2019-12-19 22:13:42 +00:00
|
|
|
仅支持具有 x86_64、AArch64。 对 Power9 的支持是实验性的。
|
2018-12-10 09:19:32 +00:00
|
|
|
|
2019-12-19 22:13:42 +00:00
|
|
|
## 安装 Git 和 CMake 和 Ninja
|
2018-12-10 09:19:32 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo apt-get install git cmake ninja-build
|
|
|
|
```
|
|
|
|
|
|
|
|
Or cmake3 instead of cmake on older systems.
|
|
|
|
或者在早期版本的系统中用 cmake3 替代 cmake
|
|
|
|
|
2019-12-19 22:13:42 +00:00
|
|
|
## 安装 GCC 9
|
2018-12-10 09:19:32 +00:00
|
|
|
|
|
|
|
There are several ways to do this.
|
|
|
|
|
|
|
|
### 安装 PPA 包
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo apt-get install software-properties-common
|
|
|
|
sudo apt-add-repository ppa:ubuntu-toolchain-r/test
|
|
|
|
sudo apt-get update
|
2019-12-19 22:13:42 +00:00
|
|
|
sudo apt-get install gcc-9 g++-9
|
2018-12-10 09:19:32 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### 源码安装 gcc
|
|
|
|
|
2019-08-04 19:11:27 +00:00
|
|
|
请查看 [utils/ci/build-gcc-from-sources.sh](https://github.com/yandex/ClickHouse/blob/master/utils/ci/build-gcc-from-sources.sh)
|
2018-12-10 09:19:32 +00:00
|
|
|
|
2019-12-19 22:13:42 +00:00
|
|
|
## 使用 GCC 9 来编译
|
2018-12-10 09:19:32 +00:00
|
|
|
|
|
|
|
```bash
|
2019-12-19 22:13:42 +00:00
|
|
|
export CC=gcc-9
|
|
|
|
export CXX=g++-9
|
2018-12-10 09:19:32 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## 安装所需的工具依赖库
|
|
|
|
|
|
|
|
```bash
|
2019-12-19 22:13:42 +00:00
|
|
|
sudo apt-get install libreadline-dev
|
2018-12-10 09:19:32 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## 拉取 ClickHouse 源码
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone --recursive git@github.com:yandex/ClickHouse.git
|
|
|
|
# or: git clone --recursive https://github.com/yandex/ClickHouse.git
|
|
|
|
|
|
|
|
cd ClickHouse
|
|
|
|
```
|
|
|
|
|
|
|
|
For the latest stable version, switch to the `stable` branch.
|
|
|
|
|
|
|
|
## 编译 ClickHouse
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
ninja
|
|
|
|
cd ..
|
|
|
|
```
|
|
|
|
|
|
|
|
若要创建一个执行文件, 执行 `ninja clickhouse`。
|
|
|
|
这个命令会使得 `dbms/programs/clickhouse` 文件可执行,您可以使用 `client` or `server` 参数运行。
|
|
|
|
|
|
|
|
|
|
|
|
[来源文章](https://clickhouse.yandex/docs/en/development/build/) <!--hide-->
|