# libc-blobs **Repository Path**: mirrors_ClickHouse-Extras/libc-blobs ## Basic Information - **Project Name**: libc-blobs - **Description**: glibc shared libraries from multiple platforms - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-05 - **Last Updated**: 2026-01-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README The simplest way to run AArch64 clickhouse binary for testing on AMD64 machine: 1. Install QEMU: ``` sudo apt install qemu-user-static ``` 2. Install the blobs from this repository: ``` sudo cp -r aarch64/* / ``` 3. Download the AArch64 binary from "ClickHouse special build check". 4. Run it with QEMU: ``` qemu-aarch64-static clickhouse-aarch64 server ``` Alternatively you can install binfmt-misc: ``` docker run --rm --privileged multiarch/qemu-user-static:register --reset ``` And then run ClickHouse binary directly: ``` ./clickhouse-aarch64 server ```