rcitsz
Results
2
comments of
rcitsz
> No idea, why use static crt? It’s not common to do that on macOS. Whether it is dynamic linking or static linking, debug or release, I tried the following...
> Nothing I can do here unless you can provide a minimal reproducible example. ```rust fn main() { std::thread::spawn(|| { std::thread::sleep(std::time::Duration::from_secs(1)); panic!("panic xxx"); }); loop { std::thread::sleep(std::time::Duration::from_secs(1)); println!("continue..."); } }...