mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
cf9a33d04f
* Allow build without rt library * fix * Cmake misc * CLICKHOUSE-3600 Use correct lld version * CLICKHOUSE-3600 Use correct lld version * Use libllvm same version as clang * fix * Fix build with iodbc * Fix iodbc build * Fix gold find * Fix empty lines
8 lines
238 B
Bash
8 lines
238 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p /server/build_docker
|
|
cd /server/build_docker
|
|
cmake /server -DENABLE_EMBEDDED_COMPILER=1 -DENABLE_TESTS=0
|
|
make -j $(nproc || grep -c ^processor /proc/cpuinfo)
|
|
#ctest -V -j $(nproc || grep -c ^processor /proc/cpuinfo)
|