mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
16 lines
390 B
Diff
16 lines
390 B
Diff
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
Date: Sat, 15 Jul 2023 21:30:26 +0200
|
|
Subject: [PATCH] Build rusty_v8 with system zlib
|
|
|
|
--- a/vendor/v8/build.rs
|
|
+++ b/vendor/v8/build.rs
|
|
@@ -508,6 +508,9 @@
|
|
println!("cargo:rustc-link-lib=dylib=msvcprt");
|
|
}
|
|
}
|
|
+
|
|
+ // Link with system-provided zlib.
|
|
+ println!("cargo:rustc-link-lib=z");
|
|
}
|
|
|
|
// Chromium depot_tools contains helpers
|