Hipster style debian build script

This commit is contained in:
proller 2017-01-16 23:00:17 +03:00
parent cad4b32609
commit 9249c829b4
2 changed files with 28 additions and 2 deletions

23
doc/build_debian.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
# How to build ClickHouse under debian-based systems (ubuntu)
# apt install -y curl sudo
# curl https://raw.githubusercontent.com/yandex/ClickHouse/master/doc/build_debian.sh | sh
# install compiler and libs
sudo apt install -y git bash cmake gcc-6 g++-6 libicu-dev libreadline-dev libmysqlclient-dev unixodbc-dev libglib2.0-dev libltdl-dev libssl-dev
# install testing only stuff if you want:
sudo apt install -y python python-lxml python-termcolor curl perl
# Checkout ClickHouse sources
git clone https://github.com/yandex/ClickHouse.git
# Build!
mkdir -p ClickHouse/build
cd ClickHouse/build
cmake .. -DCMAKE_CXX_COMPILER=`which g++-6` -DCMAKE_C_COMPILER=`which gcc-6`
make -j $(nproc || sysctl -n hw.ncpu || echo 2)
cd ..

View File

@ -3,11 +3,14 @@
# How to build ClickHouse under freebsd 11+
# [temporary solution before port created]
# pkg install -y curl sudo
# curl https://raw.githubusercontent.com/yandex/ClickHouse/master/doc/build_freebsd.sh | sh
# install compiler and libs
pkg install -y git cmake gcc6 bash glib mysql57-client icu libltdl unixODBC
sudo pkg install -y git cmake gcc6 bash glib mysql57-client icu libltdl unixODBC
# install testing only stuff if you want:
pkg install -y python py27-lxml py27-termcolor
sudo pkg install -y python py27-lxml py27-termcolor curl perl5
# Checkout ClickHouse sources
git clone https://github.com/yandex/ClickHouse.git