mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
Changes: https://github.com/denoland/deno/releases/tag/v1.26.2 https://github.com/denoland/deno/releases/tag/v1.27.0 https://github.com/denoland/deno/releases/tag/v1.27.1 https://github.com/denoland/deno/releases/tag/v1.27.2 https://github.com/denoland/deno/releases/tag/v1.28.0 https://github.com/denoland/deno/releases/tag/v1.28.1
15 lines
347 B
Rust
15 lines
347 B
Rust
--- cli/build.rs.orig 2022-10-26 10:26:25 UTC
|
|
+++ cli/build.rs
|
|
@@ -370,6 +370,12 @@ fn main() {
|
|
}
|
|
}
|
|
|
|
+ #[cfg(target_os = "freebsd")]
|
|
+ println!(
|
|
+ "cargo:rustc-link-arg-bin=deno=-Wl,--export-dynamic-symbol={}",
|
|
+ symbols_path.display()
|
|
+ );
|
|
+
|
|
// To debug snapshot issues uncomment:
|
|
// op_fetch_asset::trace_serializer();
|
|
|