Revert previous change

This commit is contained in:
BoloniniD 2022-03-31 11:03:31 +03:00
parent a1ad0ca88d
commit aca1f2d6c0
3 changed files with 10 additions and 3 deletions

2
contrib/BLAKE3 vendored

@ -1 +1 @@
Subproject commit 6bd2f2c2f67a349b790b2290303c1432b92b6462 Subproject commit e2c39c6d3c427b467d63b8d2b6412e6a729d94ab

View File

@ -62,7 +62,11 @@ RUN rustup target add aarch64-unknown-linux-gnu && \
rustup target add aarch64-apple-darwin && \ rustup target add aarch64-apple-darwin && \
rustup target add powerpc64le-unknown-linux-gnu rustup target add powerpc64le-unknown-linux-gnu
RUN apt-get install \ RUN apt-get install \
gcc-aarch64-linux-gnu \
build-essential \ build-essential \
libc6 \
libc6-dev \
libc6-dev-arm64-cross \
--yes --yes
# This symlink required by gcc to find lld compiler # This symlink required by gcc to find lld compiler

View File

@ -64,9 +64,12 @@ RUN apt-get update \
# Rust toolchain # Rust toolchain
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}" ENV PATH="/root/.cargo/bin:${PATH}"
RUN rustup target add aarch64-unknown-linux-gnu && \ RUN rustup target add aarch64-unknown-linux-gnu
apt-get install \ RUN apt-get install \
gcc-aarch64-linux-gnu \
build-essential \ build-essential \
libc6 \
libc6-dev \
--yes --yes