mirror of
https://github.com/monero-project/monero.git
synced 2025-08-19 05:48:01 -04:00
Abort on panic, fix 32-bit Windows undefined reference
This commit is contained in:
parent
8eb3f29e68
commit
da9f101703
2 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,8 @@ crypto-bigint = { git = "https://github.com/kayabaNerve/crypto-bigint", branch =
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
lto = "off"
|
lto = "off"
|
||||||
|
panic = "abort"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = "off"
|
lto = "off"
|
||||||
|
panic = "abort"
|
||||||
|
|
|
@ -241,3 +241,7 @@ pub extern "C" fn hash_trim_selene(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/79609
|
||||||
|
#[no_mangle]
|
||||||
|
pub extern "C" fn _Unwind_Resume() {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue