build: add aarch64-linux-gnu toolchain in Docker image

This commit is contained in:
LongYinan 2021-07-20 14:32:34 +08:00 committed by GitHub
parent e3b3062bcd
commit 7d1a37e639
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,5 +12,8 @@ RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
llvm \
clang \
rcs \
gcc-aarch64-linux-gnu \
g++-aarch64-linux-gnu \
ninja-build && \
curl https://sh.rustup.rs -sSf | sh -s -- -y
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
rustup target add aarch64-unknown-linux-gnu