mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Addition to prev. revision [#CLICKHOUSE-2]
This commit is contained in:
parent
7edae47282
commit
28a4513ec3
@ -78,9 +78,11 @@ case $PACKAGE_MANAGER in
|
||||
;;
|
||||
gcc*)
|
||||
$SUDO pkg install -y ${WHAT/-/}
|
||||
export COMPILER_PATH=/usr/local/bin # Otherwise ld cannot link some binaries.
|
||||
;;
|
||||
clang*)
|
||||
$SUDO pkg install -y clang-devel
|
||||
export COMPILER_PATH=/usr/local/bin
|
||||
;;
|
||||
git)
|
||||
$SUDO pkg install -y git
|
||||
|
@ -8,7 +8,7 @@ pushd vagrant-$1
|
||||
shopt -s extglob
|
||||
|
||||
vagrant ssh -c "mkdir -p ClickHouse"
|
||||
scp -F vagrant-ssh -r ../../!(*build*) default:~/ClickHouse
|
||||
scp -q -F vagrant-ssh -r ../../!(*build*) default:~/ClickHouse
|
||||
vagrant ssh -c "cd ClickHouse/ci; $2"
|
||||
|
||||
popd
|
||||
|
@ -1,6 +1,9 @@
|
||||
if (ARCH_FREEBSD)
|
||||
find_library (EXECINFO_LIBRARY execinfo)
|
||||
find_library (ELF_LIBRARY elf)
|
||||
message (STATUS "Using execinfo: ${EXECINFO_LIBRARY}")
|
||||
message (STATUS "Using elf: ${ELF_LIBRARY}")
|
||||
else ()
|
||||
set (EXECINFO_LIBRARY "")
|
||||
set (ELF_LIBRARY "")
|
||||
endif ()
|
||||
|
Loading…
Reference in New Issue
Block a user