Skip to content

Commit 0eb5afa

Browse files
committed
[guest/lib] removed unresolved symbols required by msvc toolchain
__CxxFrameHandler3 and _fltused were symbols only required by the msvc toolchain and can now be removed. Signed-off-by: danbugs <[email protected]>
1 parent 1e4c5a4 commit 0eb5afa

File tree

1 file changed

+0
-9
lines changed
  • src/hyperlight_guest/src

1 file changed

+0
-9
lines changed

src/hyperlight_guest/src/lib.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,6 @@ pub mod exceptions {
5454
}
5555
pub mod logging;
5656

57-
// Unresolved symbols
58-
///cbindgen:ignore
59-
#[no_mangle]
60-
pub(crate) extern "C" fn __CxxFrameHandler3() {}
61-
///cbindgen:ignore
62-
#[no_mangle]
63-
#[clippy::allow(clippy::non_upper_case_globals)]
64-
pub(crate) static _fltused: i32 = 0;
65-
6657
// It looks like rust-analyzer doesn't correctly manage no_std crates,
6758
// and so it displays an error about a duplicate panic_handler.
6859
// See more here: https://github.com/rust-lang/rust-analyzer/issues/4490

0 commit comments

Comments
 (0)