Skip to content

Commit 94e67b1

Browse files
committed
Patch Rust to avoid /dev/urandom usage
See: kleisauke/rust@c705a6a kleisauke/libc@dc597af
1 parent a23b339 commit 94e67b1

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,10 @@ RUN \
5151

5252
# Rust patches
5353
RUN \
54-
curl -Ls https://github.com/rust-lang/rust/pull/106779.patch | patch -p1 -d $RUSTUP_HOME/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust
54+
curl -Ls https://github.com/rust-lang/rust/pull/106779.patch | patch -p1 -d $(rustc --print sysroot)/lib/rustlib/src/rust && \
55+
curl -Ls https://github.com/kleisauke/rust/commit/c705a6a9b68b0262a01ddc50d80fbf8571580cfc.patch | patch -p1 -d $(rustc --print sysroot)/lib/rustlib/src/rust
56+
57+
# Copy the Cargo.lock for Rust to places `vendor` will see
58+
# https://github.com/rust-lang/wg-cargo-std-aware/issues/23#issuecomment-720455524
59+
RUN \
60+
cp $(rustc --print sysroot)/lib/rustlib/src/rust/Cargo.lock $(rustc --print sysroot)/lib/rustlib/src/rust/library/test

build.sh

+11-6
Original file line numberDiff line numberDiff line change
@@ -427,13 +427,18 @@ node --version
427427
stage "Compiling resvg"
428428
mkdir -p $DEPS/resvg
429429
curl -Ls https://github.com/RazrFalcon/resvg/releases/download/v$VERSION_RESVG/resvg-$VERSION_RESVG.tar.xz | tar xJC $DEPS/resvg --strip-components=1
430-
cd $DEPS/resvg/c-api
431-
# Vendor dir doesn't work with -Zbuild-std right now due to https://github.com/rust-lang/wg-cargo-std-aware/issues/23
432-
# Just delete the config so that all deps are downloaded off the internet.
433-
rm ../.cargo/config
430+
cd $DEPS/resvg
431+
# Allow building vendored sources with `-Zbuild-std`, see:
432+
# https://github.com/rust-lang/wg-cargo-std-aware/issues/23#issuecomment-720455524
433+
cargo vendor -s $(rustc --print sysroot)/lib/rustlib/src/rust/library/test/Cargo.toml
434+
# Patch libc
435+
curl -Ls https://github.com/kleisauke/libc/commit/dc597aff818dd32856758feab0d9c530d15985c4.patch | patch -p1 -d vendor/libc
436+
# Update expected Cargo SHA256 hashes for the vendored files we have patched
437+
sed -i 's/6ef4652dfb94e3c58aed5133ece982ad30569d46b6b1054552cd61905fa61690/8ff63140fc57d10a185f0883d02564d08c93120dcbbaa0410f753154efde3a71/' vendor/libc/.cargo-checksum.json
434438
# We don't want to build the shared library
435-
sed -i 's/crate-type = .*/crate-type = ["staticlib"]/' Cargo.toml
436-
cargo build --release --target wasm32-unknown-emscripten --locked -Zbuild-std=panic_abort,std --no-default-features --features filter,raster-images
439+
sed -i 's/crate-type = .*/crate-type = ["staticlib"]/' c-api/Cargo.toml
440+
cargo build --manifest-path=c-api/Cargo.toml --release --target wasm32-unknown-emscripten --locked \
441+
-Zbuild-std=panic_abort,std --no-default-features --features filter,raster-images
437442
cp $DEPS/resvg/target/wasm32-unknown-emscripten/release/libresvg.a $TARGET/lib/
438443
cp $DEPS/resvg/c-api/resvg.h $TARGET/include/
439444
)

0 commit comments

Comments
 (0)