Skip to content

Commit

Permalink
Upgrade to libvips v8.16.0-rc2 (#255)
Browse files Browse the repository at this point in the history
* cargo-c: ensure deterministic build
  • Loading branch information
kleisauke authored Oct 22, 2024
1 parent 2078c23 commit 2e7ace7
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LIBVIPS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.16.0-rc1
8.16.0-rc2
2 changes: 1 addition & 1 deletion build/lin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ if [ "$DARWIN" = true ]; then
if [ "$DARWIN_ARM" = true ]; then
${CARGO_HOME}/bin/rustup target add aarch64-apple-darwin
fi
CFLAGS= cargo install cargo-c
CFLAGS= cargo install cargo-c --locked
fi

if [ "${PLATFORM%-*}" == "linuxmusl" ] || [ "$DARWIN" = true ]; then
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN \
--profile minimal \
--default-host aarch64-unknown-linux-gnu \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
pip3 install meson ninja packaging tomli

Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN \
--profile minimal \
&& \
rustup target add arm-unknown-linux-gnueabihf && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Compiler settings
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-ppc64le/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN \
--profile minimal \
&& \
rustup target add powerpc64le-unknown-linux-gnu && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Handy for debugging the compiled targets in Highway (hwy_list_targets)
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-s390x/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
--profile minimal \
&& \
rustup target add s390x-unknown-linux-gnu && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson tomli

# Handy for debugging the compiled targets in Highway (hwy_list_targets)
Expand Down
2 changes: 1 addition & 1 deletion platforms/linux-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN \
--no-modify-path \
--profile minimal \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
pip3 install meson ninja packaging tomli

Expand Down
2 changes: 1 addition & 1 deletion platforms/linuxmusl-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN \
--profile minimal \
&& \
rustup target add aarch64-unknown-linux-musl && \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson

# Compiler settings
Expand Down
2 changes: 1 addition & 1 deletion platforms/linuxmusl-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN \
--no-modify-path \
--profile minimal \
&& \
cargo install cargo-c && \
cargo install cargo-c --locked && \
pip3 install meson

# Compiler settings
Expand Down

0 comments on commit 2e7ace7

Please sign in to comment.