mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Hipster style debian build script
This commit is contained in:
parent
cad4b32609
commit
9249c829b4
23
doc/build_debian.sh
Executable file
23
doc/build_debian.sh
Executable 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 ..
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user