mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
13 lines
231 B
Bash
Executable File
13 lines
231 B
Bash
Executable File
#!/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
|