Added instruction for quick syntax check [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-10-14 11:22:56 +03:00
parent 9c4e74ad91
commit c53f38260f

View File

@ -0,0 +1,6 @@
# Quick syntax check (2 minutes on 16-core server)
mkdir build && cd build
CC=clang-8 CXX=clang++-8 cmake -D ENABLE_EMBEDDED_COMPILER=0 -D CMAKE_BUILD_TYPE=Debug ..
ninja re2_st
time jq --raw-output '.[] | .command' compile_commands.json | grep -P -- ' -o [^ ]+\.o' | grep -v -P -- '-c .+/contrib/' | grep -vP '\.s$' | sed -r -e 's/ -o [^ ]+\.o/ -fsyntax-only/' | sort -R | xargs -I{} -P$(nproc) sh -c '{}'