ClickHouse/utils/build/build_freebsd.sh
proller 3acce3bff9 Build fix (#2944)
* Build fix

* Better sample build scripts

* zlib apple fix

* fix

* fix

* better so version

* SPLIT_SHARED -> LINK_MODE

* clean
2018-08-27 17:39:20 +03:00

51 lines
1.4 KiB
Bash
Executable File

#!/bin/sh
# How to build ClickHouse under freebsd 11+
# Variant 1: Use pkg:
# pkg install databases/clickhouse
# Variant 2: Use ports:
# make -C /usr/ports/databases/clickhouse install clean
# Run server:
# echo clickhouse_enable="YES" >> /etc/rc.conf.local
# service clickhouse restart
# Variant 3: Manual build:
# pkg install -y curl sudo
# curl https://raw.githubusercontent.com/yandex/ClickHouse/master/utils/build/build_freebsd.sh | sh
# install compiler and libs
sudo pkg install devel/git devel/cmake devel/ninja shells/bash devel/icu devel/libltdl databases/unixODBC devel/google-perftools devel/libdouble-conversion archivers/zstd archivers/liblz4 devel/sparsehash devel/re2
# install testing only stuff if you want:
sudo pkg install lang/python devel/py-lxml devel/py-termcolor www/py-requests ftp/curl perl5
# If you want ODBC support: Check UNIXODBC option:
# make -C /usr/ports/devel/poco config reinstall
BASE_DIR=$(dirname $0) && [ -f "$BASE_DIR/../../CMakeLists.txt" ] && ROOT_DIR=$BASE_DIR/../.. && cd $ROOT_DIR
if [ -z $ROOT_DIR ]; then
# Checkout ClickHouse sources
git clone --recursive https://github.com/yandex/ClickHouse.git
cd ClickHouse
fi
# Build!
mkdir -p build
cd build
cmake .. -DUNBUNDLED=1 -DUSE_STATIC_LIBRARIES=0
cmake --build .
cd ..
# Run server:
# build/dbms/programs/clickhouse-server --config-file=ClickHouse/dbms/programs/server/config.xml &
# Run client:
# build/dbms/programs/clickhouse-client