We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3944a0 commit d9f29fdCopy full SHA for d9f29fd
library/unwind/src/lib.rs
@@ -42,6 +42,9 @@ cfg_if::cfg_if! {
42
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
43
extern "C" {}
44
45
+// When building with crt-static, we get `gcc_eh` from the `libc` crate, since
46
+// glibc needs it, and needs it listed later on the linker command line. We
47
+// don't want to duplicate it here.
48
#[cfg(all(target_os = "linux", target_env = "gnu", not(feature = "llvm-libunwind")))]
49
50
0 commit comments