2022-01-13 18:03:34 +00:00
|
|
|
# rebuild in #33610
|
2021-12-24 15:10:06 +00:00
|
|
|
# docker build -t clickhouse/binary-builder .
|
2022-07-29 12:31:53 +00:00
|
|
|
ARG FROM_TAG=latest
|
|
|
|
FROM clickhouse/test-util:$FROM_TAG
|
2019-09-27 13:25:51 +00:00
|
|
|
|
2022-03-18 18:59:56 +00:00
|
|
|
# Rust toolchain and libraries
|
2022-09-18 08:50:44 +00:00
|
|
|
ENV RUSTUP_HOME=/rust/rustup
|
|
|
|
ENV CARGO_HOME=/rust/cargo
|
2022-06-07 18:09:06 +00:00
|
|
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
2022-09-18 08:50:44 +00:00
|
|
|
RUN chmod 777 -R /rust
|
|
|
|
ENV PATH="/rust/cargo/env:${PATH}"
|
|
|
|
ENV PATH="/rust/cargo/bin:${PATH}"
|
2022-03-18 18:59:56 +00:00
|
|
|
RUN rustup target add aarch64-unknown-linux-gnu && \
|
|
|
|
rustup target add x86_64-apple-darwin && \
|
|
|
|
rustup target add x86_64-unknown-freebsd && \
|
|
|
|
rustup target add aarch64-apple-darwin && \
|
|
|
|
rustup target add powerpc64le-unknown-linux-gnu
|
|
|
|
RUN apt-get install \
|
2022-03-31 08:03:31 +00:00
|
|
|
gcc-aarch64-linux-gnu \
|
2022-03-18 18:59:56 +00:00
|
|
|
build-essential \
|
2022-03-31 08:03:31 +00:00
|
|
|
libc6 \
|
|
|
|
libc6-dev \
|
|
|
|
libc6-dev-arm64-cross \
|
2022-03-18 18:59:56 +00:00
|
|
|
--yes
|
|
|
|
|
2022-09-13 20:09:39 +00:00
|
|
|
# Install CMake 3.20+ for Rust compilation
|
|
|
|
RUN apt purge cmake --yes
|
|
|
|
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
|
|
|
|
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ focal main'
|
|
|
|
RUN apt update && apt install cmake --yes
|
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
ENV CC=clang-${LLVM_VERSION}
|
|
|
|
ENV CXX=clang++-${LLVM_VERSION}
|
2019-09-23 19:29:47 +00:00
|
|
|
|
|
|
|
# libtapi is required to support .tbh format from recent MacOS SDKs
|
2021-12-14 14:22:31 +00:00
|
|
|
RUN git clone --depth 1 https://github.com/tpoechtrager/apple-libtapi.git \
|
2020-06-25 06:23:25 +00:00
|
|
|
&& cd apple-libtapi \
|
|
|
|
&& INSTALLPREFIX=/cctools ./build.sh \
|
|
|
|
&& ./install.sh \
|
2020-06-25 06:26:10 +00:00
|
|
|
&& cd .. \
|
2020-06-25 06:23:25 +00:00
|
|
|
&& rm -rf apple-libtapi
|
2019-09-23 19:29:47 +00:00
|
|
|
|
2021-06-25 15:21:56 +00:00
|
|
|
# Build and install tools for cross-linking to Darwin (x86-64)
|
2021-12-14 14:22:31 +00:00
|
|
|
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
|
2020-06-25 06:23:25 +00:00
|
|
|
&& cd cctools-port/cctools \
|
|
|
|
&& ./configure --prefix=/cctools --with-libtapi=/cctools \
|
|
|
|
--target=x86_64-apple-darwin \
|
|
|
|
&& make install \
|
2020-06-25 06:26:10 +00:00
|
|
|
&& cd ../.. \
|
2020-06-25 06:23:25 +00:00
|
|
|
&& rm -rf cctools-port
|
2019-09-23 19:29:47 +00:00
|
|
|
|
2021-06-25 15:21:56 +00:00
|
|
|
# Build and install tools for cross-linking to Darwin (aarch64)
|
2021-12-14 14:22:31 +00:00
|
|
|
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
|
2021-06-25 15:21:56 +00:00
|
|
|
&& cd cctools-port/cctools \
|
|
|
|
&& ./configure --prefix=/cctools --with-libtapi=/cctools \
|
|
|
|
--target=aarch64-apple-darwin \
|
|
|
|
&& make install \
|
|
|
|
&& cd ../.. \
|
|
|
|
&& rm -rf cctools-port
|
|
|
|
|
|
|
|
# Download toolchain and SDK for Darwin
|
|
|
|
RUN wget -nv https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
|
2019-10-24 12:56:30 +00:00
|
|
|
|
2021-09-08 15:06:15 +00:00
|
|
|
# NOTE: Seems like gcc-11 is too new for ubuntu20 repository
|
|
|
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test --yes \
|
|
|
|
&& apt-get update \
|
2021-12-14 14:22:31 +00:00
|
|
|
&& apt-get install gcc-11 g++-11 --yes \
|
|
|
|
&& apt-get clean
|
2020-09-09 10:51:01 +00:00
|
|
|
|
2022-08-14 03:57:55 +00:00
|
|
|
# A cross-linker for RISC-V 64 (we need it, because LLVM's LLD does not work):
|
|
|
|
RUN apt-get install binutils-riscv64-linux-gnu
|
|
|
|
|
2022-02-08 18:12:04 +00:00
|
|
|
# Architecture of the image when BuildKit/buildx is used
|
|
|
|
ARG TARGETARCH
|
2022-09-19 18:42:02 +00:00
|
|
|
ARG NFPM_VERSION=2.18.1
|
2022-02-08 18:12:04 +00:00
|
|
|
|
|
|
|
RUN arch=${TARGETARCH:-amd64} \
|
|
|
|
&& curl -Lo /tmp/nfpm.deb "https://github.com/goreleaser/nfpm/releases/download/v${NFPM_VERSION}/nfpm_${arch}.deb" \
|
|
|
|
&& dpkg -i /tmp/nfpm.deb \
|
|
|
|
&& rm /tmp/nfpm.deb
|
2020-09-09 10:51:01 +00:00
|
|
|
|
2022-06-30 16:52:59 +00:00
|
|
|
ARG GO_VERSION=1.18.3
|
|
|
|
# We need go for clickhouse-diagnostics
|
|
|
|
RUN arch=${TARGETARCH:-amd64} \
|
|
|
|
&& curl -Lo /tmp/go.tgz "https://go.dev/dl/go${GO_VERSION}.linux-${arch}.tar.gz" \
|
|
|
|
&& tar -xzf /tmp/go.tgz -C /usr/local/ \
|
|
|
|
&& rm /tmp/go.tgz
|
|
|
|
|
|
|
|
ENV PATH="$PATH:/usr/local/go/bin"
|
|
|
|
ENV GOPATH=/workdir/go
|
|
|
|
ENV GOCACHE=/workdir/
|
|
|
|
|
2022-05-13 10:50:16 +00:00
|
|
|
RUN mkdir /workdir && chmod 777 /workdir
|
|
|
|
WORKDIR /workdir
|
2022-04-02 08:33:40 +00:00
|
|
|
|
2019-04-25 12:29:28 +00:00
|
|
|
COPY build.sh /
|
2022-03-16 18:52:19 +00:00
|
|
|
CMD ["bash", "-c", "/build.sh 2>&1"]
|