mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Add Rust aarch64 toolchain to Docker container
This commit is contained in:
parent
4a33f4ff3b
commit
0f8bfbb25b
2
contrib/BLAKE3
vendored
2
contrib/BLAKE3
vendored
@ -1 +1 @@
|
||||
Subproject commit 0009b91cfaa44171ce869d64037b20a2aef1525c
|
||||
Subproject commit 74f7fa1652e413fb7b86a86980cfff00a65fef7a
|
@ -59,10 +59,20 @@ RUN apt-get update \
|
||||
pixz \
|
||||
pkg-config \
|
||||
tzdata \
|
||||
rustc \
|
||||
cargo \
|
||||
--yes --no-install-recommends
|
||||
|
||||
# Rust toolchain
|
||||
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||
RUN rustup target add aarch64-unknown-linux-gnu && \
|
||||
apt-get install \
|
||||
gcc-aarch64-linux-gnu \
|
||||
build-essential \
|
||||
libc6 \
|
||||
libc6-dev \
|
||||
--yes
|
||||
|
||||
|
||||
# NOTE: Seems like gcc-11 is too new for ubuntu20 repository
|
||||
RUN add-apt-repository ppa:ubuntu-toolchain-r/test --yes \
|
||||
&& apt-get update \
|
||||
|
Loading…
Reference in New Issue
Block a user