2022-11-15 12:25:32 -05:00
|
|
|
From c6e7e983a82b86c08a52bfd11056c1d7e12a3405 Mon Sep 17 00:00:00 2001
|
2022-05-28 11:20:07 -04:00
|
|
|
From: Alexander Kanavin <alex@linutronix.de>
|
|
|
|
Date: Fri, 1 Oct 2021 13:00:24 +0200
|
|
|
|
Subject: [PATCH] Cargo.toml: do not abort on panic
|
|
|
|
|
|
|
|
OE's rust is configured to unwind, and this setting clashes with it/
|
|
|
|
|
|
|
|
Upstream-Status: Inappropriate [oe-core specific]
|
|
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
2022-11-15 12:25:32 -05:00
|
|
|
|
2022-05-28 11:20:07 -04:00
|
|
|
---
|
2022-11-15 12:25:32 -05:00
|
|
|
Cargo.toml | 2 --
|
|
|
|
1 file changed, 2 deletions(-)
|
2022-05-28 11:20:07 -04:00
|
|
|
|
2022-11-15 12:25:32 -05:00
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
|
|
index f576534bf3..5ecc17c319 100644
|
2022-05-28 11:20:07 -04:00
|
|
|
--- a/Cargo.toml
|
|
|
|
+++ b/Cargo.toml
|
2022-11-15 12:25:32 -05:00
|
|
|
@@ -56,13 +56,11 @@ opt-level = 1
|
2022-05-28 11:20:07 -04:00
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
-panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 2
|
|
|
|
rpath = false
|
|
|
|
debug-assertions = false
|
|
|
|
-panic = "abort"
|
|
|
|
|
|
|
|
# Optimize build dependencies, because bindgen and proc macros / style
|
|
|
|
# compilation take more to run than to build otherwise.
|