--- toc_priority: 68 toc_title: Build on Linux for RISC-V 64 --- # How to Build ClickHouse on Linux for RISC-V 64 Architecture {#how-to-build-clickhouse-on-linux-for-risc-v-64-architecture} As of writing (11.11.2021) building for risc-v considered to be highly experimental. Not all features can be enabled. This is for the case when you have Linux machine and want to use it to build `clickhouse` binary that will run on another Linux machine with RISC-V 64 CPU architecture. This is intended for continuous integration checks that run on Linux servers. The cross-build for RISC-V 64 is based on the [Build instructions](../development/build.md), follow them first. ## Install Clang-13 Follow the instructions from https://apt.llvm.org/ for your Ubuntu or Debian setup or do ``` sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ``` ## Build ClickHouse {#build-clickhouse} ``` bash cd ClickHouse mkdir build-riscv64 CC=clang-13 CXX=clang++-13 cmake . -Bbuild-riscv64 -G Ninja -DCMAKE_TOOLCHAIN_FILE=cmake/linux/toolchain-riscv64.cmake -DGLIBC_COMPATIBILITY=OFF -DENABLE_LDAP=OFF -DOPENSSL_NO_ASM=ON -DENABLE_JEMALLOC=ON -DENABLE_PARQUET=OFF -DUSE_INTERNAL_PARQUET_LIBRARY=OFF -DENABLE_ORC=OFF -DUSE_INTERNAL_ORC_LIBRARY=OFF -DUSE_UNWIND=OFF -DUSE_INTERNAL_PROTOBUF_LIBRARY=ON -DENABLE_GRPC=OFF -DUSE_INTERNAL_GRPC_LIBRARY=OFF -DENABLE_HDFS=OFF -DUSE_INTERNAL_HDFS3_LIBRARY=OFF -DENABLE_MYSQL=OFF -DUSE_INTERNAL_MYSQL_LIBRARY=OFF ninja -C build-riscv64 ``` The resulting binary will run only on Linux with the RISC-V 64 CPU architecture.