mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
12 lines
268 B
Bash
Executable File
12 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e -x
|
|
|
|
source default-config
|
|
|
|
./install-os-packages.sh libicu-dev
|
|
./install-os-packages.sh libreadline-dev
|
|
|
|
if [[ "$ENABLE_EMBEDDED_COMPILER" == 1 && "$USE_LLVM_LIBRARIES_FROM_SYSTEM" == 1 ]]; then
|
|
./install-os-packages.sh llvm-libs-5.0
|
|
fi
|