-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Here is an app
Cargo.toml
dioxus-native = { git = "https://github.com/DioxusLabs/blitz", rev = "4be7733", features = ["prelude"] }
src/bin/main2.rs
fn main() {
dioxus_native::launch(App)
}
use dioxus_native::prelude::*;
#[component]
fn App()->Element {
rsx! {
h1 {
"Hello"
}
}
}Run it with
RUST_BACKTRACE=full RUST_LOG=info cargo run --bin main2
It opens. Then click x on the window. The process segfaults and the shell might hang.
fish: Job 1, 'RUST_BACKTRACE=full RUST_LOG=in…' terminated by signal SIGSEGV (Address boundary error)
Running on Linux hostname 6.19.3-2-cachyos #1 SMP PREEMPT_DYNAMIC Fri, 20 Feb 2026 01:02:58 +0000 x86_64 GNU/Linux - archlinux variant
Here are some core dumps
https://github.com/johnny-smitherson/native-core-dump
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working