diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-04-06 03:39:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 03:39:07 +0200 |
| commit | 823bf7618a32dfce8e72213a404063878991bee2 (patch) | |
| tree | 2ac8a4fcd321531f175a1c474d8e74c5520ccf7f | |
| parent | bbe9d27b8ff36da56638aa43d6d0cdfdf89a4e57 (diff) | |
| parent | 92246c099e6e6d4c5e88e2ce14ccce0da42a3b68 (diff) | |
| download | rust-823bf7618a32dfce8e72213a404063878991bee2.tar.gz rust-823bf7618a32dfce8e72213a404063878991bee2.zip | |
Rollup merge of #95659 - anp:remove-link-print, r=tmandry
Rely on #[link] attribute for unwind on Fuchsia. Closes #95575.
| -rw-r--r-- | library/unwind/build.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/unwind/build.rs b/library/unwind/build.rs index a3f5224151d..61d3f45ca65 100644 --- a/library/unwind/build.rs +++ b/library/unwind/build.rs @@ -40,8 +40,6 @@ fn main() { // This is handled in the target spec with late_link_args_[static|dynamic] } else if target.contains("uwp-windows-gnu") { println!("cargo:rustc-link-lib=unwind"); - } else if target.contains("fuchsia") { - println!("cargo:rustc-link-lib=unwind"); } else if target.contains("haiku") { println!("cargo:rustc-link-lib=gcc_s"); } else if target.contains("redox") { |
