From 6af8c836e1dac195eff8e52232f5f7466012f5bf Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Fri, 6 Oct 2017 13:49:54 -0400 Subject: [PATCH] Use panic=abort instead of panic=unwind This is the same mode as Gecko uses and will get better codegen once https://github.com/rust-lang/rust/pull/45012 has landed. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5405ed4a84..ce839e1708 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,4 @@ members = [ [profile.release] debug = true +panic = "abort"