We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 680ba90 + 10d0f14 commit 20d6a44Copy full SHA for 20d6a44
library/unwind/src/libunwind.rs
@@ -27,7 +27,10 @@ pub type _Unwind_Trace_Fn =
27
#[cfg(target_arch = "x86")]
28
pub const unwinder_private_data_size: usize = 5;
29
30
-#[cfg(target_arch = "x86_64")]
+#[cfg(all(target_arch = "x86_64", not(target_os = "windows")))]
31
+pub const unwinder_private_data_size: usize = 2;
32
+
33
+#[cfg(all(target_arch = "x86_64", target_os = "windows"))]
34
pub const unwinder_private_data_size: usize = 6;
35
36
#[cfg(all(target_arch = "arm", not(any(target_os = "ios", target_os = "watchos"))))]
0 commit comments