mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
13 lines
231 B
Bash
13 lines
231 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e -x
|
||
|
|
||
|
source default-config
|
||
|
|
||
|
if [[ "$COMPILER" == "gcc" ]]; then
|
||
|
. build-gcc-from-sources.sh
|
||
|
elif [[ "$COMPILER" == "clang" ]]; then
|
||
|
. build-clang-from-sources.sh
|
||
|
else
|
||
|
die "Unknown COMPILER"
|
||
|
fi
|