Add sysroot for special target - test

This commit is contained in:
BoloniniD 2022-03-30 14:31:28 +03:00
parent e0417077bf
commit a1ad0ca88d
4 changed files with 2 additions and 9 deletions

2
contrib/BLAKE3 vendored

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

View File

@ -50,7 +50,6 @@ RUN apt-get update \
pigz \ pigz \
rename \ rename \
software-properties-common \ software-properties-common \
gcc-multilib \
--yes --no-install-recommends \ --yes --no-install-recommends \
&& apt-get clean && apt-get clean
@ -63,10 +62,7 @@ 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 \
--yes --yes
# This symlink required by gcc to find lld compiler # This symlink required by gcc to find lld compiler

View File

@ -23,7 +23,7 @@ rm -f CMakeCache.txt
# Read cmake arguments into array (possibly empty) # Read cmake arguments into array (possibly empty)
read -ra CMAKE_FLAGS <<< "${CMAKE_FLAGS:-}" read -ra CMAKE_FLAGS <<< "${CMAKE_FLAGS:-}"
env env
cmake --debug-trycompile --verbose=1 -DCMAKE_VERBOSE_MAKEFILE=1 -LA "-DCMAKE_BUILD_TYPE=$BUILD_TYPE" "-DSANITIZE=$SANITIZER" -DENABLE_CHECK_HEAVY_BUILDS=1 "${CMAKE_FLAGS[@]}" .. cmake --debug-trycompile -DCMAKE_VERBOSE_MAKEFILE=1 -LA "-DCMAKE_BUILD_TYPE=$BUILD_TYPE" "-DSANITIZE=$SANITIZER" -DENABLE_CHECK_HEAVY_BUILDS=1 "${CMAKE_FLAGS[@]}" ..
cache_status cache_status
# clear cache stats # clear cache stats

View File

@ -66,10 +66,7 @@ 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 \ apt-get install \
gcc-aarch64-linux-gnu \
build-essential \ build-essential \
libc6 \
libc6-dev \
--yes --yes