From 3bd04a789fcbc7d20a8e46dde942f81995db2ef4 Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Fri, 28 Jun 2019 20:13:58 +0300 Subject: [PATCH] Update build.md --- docs/en/development/build.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/development/build.md b/docs/en/development/build.md index 6d56d6a22b4..caeb7387d49 100644 --- a/docs/en/development/build.md +++ b/docs/en/development/build.md @@ -40,7 +40,7 @@ sudo apt-get install git cmake ninja-build Or cmake3 instead of cmake on older systems. -## Install GCC 7 +## Install GCC 8 There are several ways to do this. @@ -50,18 +50,18 @@ There are several ways to do this. 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-7 g++-7 +sudo apt-get install gcc-8 g++-8 ``` ### Install from Sources Look at [ci/build-gcc-from-sources.sh](https://github.com/yandex/ClickHouse/blob/master/ci/build-gcc-from-sources.sh) -## Use GCC 7 for Builds +## Use GCC 8 for Builds ```bash -export CC=gcc-7 -export CXX=g++-7 +export CC=gcc-8 +export CXX=g++-8 ``` ## Install Required Libraries from Packages