We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc7567e commit 4c60176Copy full SHA for 4c60176
azure-pipelines.yml
@@ -76,5 +76,9 @@ jobs:
76
TARGET: x86_64-pc-windows-msvc
77
i686-gnu:
78
TARGET: i686-pc-windows-gnu
79
+ INTRINSICS_FAILS_WITH_MEM_FEATURE: 1
80
+ DEBUG_LTO_BUILD_DOESNT_WORK: 1
81
x86_64-gnu:
82
TARGET: x86_64-pc-windows-gnu
83
84
examples/intrinsics.rs
@@ -383,3 +383,11 @@ pub fn _Unwind_Resume() {}
383
#[lang = "eh_personality"]
384
#[no_mangle]
385
pub extern "C" fn eh_personality() {}
386
+
387
+#[cfg(all(windows, target_env = "gnu"))]
388
+mod mingw_unwidning {
389
+ #[no_mangle]
390
+ pub fn rust_eh_personality() {}
391
392
+ pub fn rust_eh_unwind_resume() {}
393
+}
0 commit comments