mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
cd14f9ebcb
* split up select.md * array-join.md basic refactoring * distinct.md basic refactoring * format.md basic refactoring * from.md basic refactoring * group-by.md basic refactoring * having.md basic refactoring * additional index.md refactoring * into-outfile.md basic refactoring * join.md basic refactoring * limit.md basic refactoring * limit-by.md basic refactoring * order-by.md basic refactoring * prewhere.md basic refactoring * adjust operators/index.md links * adjust sample.md links * adjust more links * adjust operatots links * fix some links * adjust aggregate function article titles * basic refactor of remaining select clauses * absolute paths in make_links.sh * run make_links.sh * remove old select.md locations * translate docs/es * translate docs/fr * translate docs/fa * remove old operators.md location * change operators.md links * adjust links in docs/es * adjust links in docs/es * minor texts adjustments * wip * update machine translations to use new links * fix changelog * es build fixes * get rid of some select.md links * temporary adjust ru links * temporary adjust more ru links * improve curly brace handling * adjust ru as well * fa build fix * ru link fixes * zh link fixes * temporary disable part of anchor checks
65 lines
2.3 KiB
Markdown
65 lines
2.3 KiB
Markdown
---
|
||
machine_translated: true
|
||
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
|
||
toc_priority: 66
|
||
toc_title: "Mac OS X i\xE7in Linux'ta ClickHouse nas\u0131l olu\u015Fturulur"
|
||
---
|
||
|
||
# Mac OS X için Linux'ta ClickHouse nasıl oluşturulur {#how-to-build-clickhouse-on-linux-for-mac-os-x}
|
||
|
||
Bu, Linux makineniz olduğunda ve onu oluşturmak için kullanmak istediğinizde geçerlidir `clickhouse` OS X üzerinde çalışacak ikili. bu, Linux sunucularında çalışan sürekli entegrasyon kontrolleri için tasarlanmıştır. Clickhouse'u doğrudan Mac OS X'te oluşturmak istiyorsanız, devam edin [başka bir talimat](build-osx.md).
|
||
|
||
Mac OS X için çapraz yapı, [Inşa talimatları](build.md) önce onları takip et.
|
||
|
||
# Clang-8'i Yükle {#install-clang-8}
|
||
|
||
Yönergeleri izleyin https://apt.llvm.org / Ubuntu veya Debian kurulumunuz için.
|
||
Örneğin biyonik için komutlar gibidir:
|
||
|
||
``` bash
|
||
sudo echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main" >> /etc/apt/sources.list
|
||
sudo apt-get install clang-8
|
||
```
|
||
|
||
# Çapraz Derleme Araç Setini Yükle {#install-cross-compilation-toolset}
|
||
|
||
Yüklediğimiz yolu hatırlayalım `cctools` olarak $ {CCTOOLS}
|
||
|
||
``` bash
|
||
mkdir ${CCTOOLS}
|
||
|
||
git clone https://github.com/tpoechtrager/apple-libtapi.git
|
||
cd apple-libtapi
|
||
INSTALLPREFIX=${CCTOOLS} ./build.sh
|
||
./install.sh
|
||
cd ..
|
||
|
||
git clone https://github.com/tpoechtrager/cctools-port.git
|
||
cd cctools-port/cctools
|
||
./configure --prefix=${CCTOOLS} --with-libtapi=${CCTOOLS} --target=x86_64-apple-darwin
|
||
make install
|
||
```
|
||
|
||
Ayrıca, MacOS X SDK'YI çalışma ağacına indirmemiz gerekiyor.
|
||
|
||
``` bash
|
||
cd ClickHouse
|
||
wget 'https://github.com/phracker/MacOSX-SDKs/releases/download/10.14-beta4/MacOSX10.14.sdk.tar.xz'
|
||
mkdir -p build-darwin/cmake/toolchain/darwin-x86_64
|
||
tar xJf MacOSX10.14.sdk.tar.xz -C build-darwin/cmake/toolchain/darwin-x86_64 --strip-components=1
|
||
```
|
||
|
||
# ClickHouse İnşa {#build-clickhouse}
|
||
|
||
``` bash
|
||
cd ClickHouse
|
||
mkdir build-osx
|
||
CC=clang-8 CXX=clang++-8 cmake . -Bbuild-osx -DCMAKE_TOOLCHAIN_FILE=cmake/darwin/toolchain-x86_64.cmake \
|
||
-DCMAKE_AR:FILEPATH=${CCTOOLS}/bin/x86_64-apple-darwin-ar \
|
||
-DCMAKE_RANLIB:FILEPATH=${CCTOOLS}/bin/x86_64-apple-darwin-ranlib \
|
||
-DLINKER_NAME=${CCTOOLS}/bin/x86_64-apple-darwin-ld
|
||
ninja -C build-osx
|
||
```
|
||
|
||
Ortaya çıkan ikili bir Mach-O yürütülebilir biçimine sahip olacak ve Linux üzerinde çalıştırılamaz.
|