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 .
|
2020-09-07 15:40:21 +00:00
|
|
|
FROM ubuntu:20.04
|
2019-01-10 10:35:17 +00:00
|
|
|
|
2021-11-25 16:30:39 +00:00
|
|
|
# ARG for quick switch to a given ubuntu mirror
|
|
|
|
ARG apt_archive="http://archive.ubuntu.com"
|
|
|
|
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
|
2020-04-20 20:04:35 +00:00
|
|
|
|
2022-02-19 17:43:02 +00:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=14
|
2021-08-23 08:22:39 +00:00
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
RUN apt-get update \
|
2021-03-23 16:39:55 +00:00
|
|
|
&& apt-get install \
|
|
|
|
apt-transport-https \
|
|
|
|
apt-utils \
|
|
|
|
ca-certificates \
|
|
|
|
dnsutils \
|
|
|
|
gnupg \
|
|
|
|
iputils-ping \
|
|
|
|
lsb-release \
|
|
|
|
wget \
|
2020-08-25 03:11:01 +00:00
|
|
|
--yes --no-install-recommends --verbose-versions \
|
|
|
|
&& export LLVM_PUBKEY_HASH="bda960a8da687a275a2078d43c111d66b1c6a893a3275271beedf266c1ff4a0cdecb429c7a5cccf9f486ea7aa43fd27f" \
|
2021-03-30 16:03:55 +00:00
|
|
|
&& wget -nv -O /tmp/llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key \
|
2020-08-25 03:11:01 +00:00
|
|
|
&& echo "${LLVM_PUBKEY_HASH} /tmp/llvm-snapshot.gpg.key" | sha384sum -c \
|
|
|
|
&& apt-key add /tmp/llvm-snapshot.gpg.key \
|
|
|
|
&& export CODENAME="$(lsb_release --codename --short | tr 'A-Z' 'a-z')" \
|
2021-03-23 16:39:55 +00:00
|
|
|
&& echo "deb [trusted=yes] https://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
|
2021-12-14 14:22:31 +00:00
|
|
|
/etc/apt/sources.list \
|
|
|
|
&& apt-get clean
|
2019-05-20 09:51:52 +00:00
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
# initial packages
|
2021-03-30 16:03:55 +00:00
|
|
|
RUN apt-get update \
|
2020-08-25 03:11:01 +00:00
|
|
|
&& apt-get install \
|
|
|
|
bash \
|
2021-03-31 21:54:45 +00:00
|
|
|
build-essential \
|
2020-08-25 03:11:01 +00:00
|
|
|
ccache \
|
2021-12-14 14:22:31 +00:00
|
|
|
clang-${LLVM_VERSION} \
|
|
|
|
clang-tidy-${LLVM_VERSION} \
|
2021-03-31 21:54:45 +00:00
|
|
|
cmake \
|
|
|
|
curl \
|
2021-12-14 14:22:31 +00:00
|
|
|
fakeroot \
|
2021-03-31 21:54:45 +00:00
|
|
|
gdb \
|
|
|
|
git \
|
|
|
|
gperf \
|
2021-09-06 21:51:41 +00:00
|
|
|
lld-${LLVM_VERSION} \
|
|
|
|
llvm-${LLVM_VERSION} \
|
|
|
|
llvm-${LLVM_VERSION}-dev \
|
2021-03-31 21:54:45 +00:00
|
|
|
moreutils \
|
2020-08-25 03:11:01 +00:00
|
|
|
ninja-build \
|
2021-04-01 12:12:30 +00:00
|
|
|
pigz \
|
2020-08-25 03:11:01 +00:00
|
|
|
rename \
|
2021-12-14 14:22:31 +00:00
|
|
|
software-properties-common \
|
|
|
|
--yes --no-install-recommends \
|
|
|
|
&& apt-get clean
|
2019-09-27 13:25:51 +00:00
|
|
|
|
2022-03-18 18:59:56 +00:00
|
|
|
# Rust toolchain and libraries
|
2022-06-06 15:03:41 +00:00
|
|
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y && chmod gou+x -R /root/.cargo/
|
2022-03-18 18:59:56 +00:00
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
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
|
|
|
|
|
2020-03-03 12:32:54 +00:00
|
|
|
# This symlink required by gcc to find lld compiler
|
2020-08-25 03:11:01 +00:00
|
|
|
RUN ln -s /usr/bin/lld-${LLVM_VERSION} /usr/bin/ld.lld
|
2020-02-07 20:59:51 +00:00
|
|
|
|
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-02-08 18:12:04 +00:00
|
|
|
# Architecture of the image when BuildKit/buildx is used
|
|
|
|
ARG TARGETARCH
|
2022-05-13 10:50:16 +00:00
|
|
|
ARG NFPM_VERSION=2.15.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-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"]
|