summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pendulum
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pendulum')
-rw-r--r--meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch b/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch
new file mode 100644
index 0000000000..f721b9fe40
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pendulum/0001-rust-Cargo.toml-inhibit-strip.patch
@@ -0,0 +1,31 @@
1From 74db4bc77be0e02912975ea198e58addf97bc218 Mon Sep 17 00:00:00 2001
2From: Tim Orling <tim.orling@konsulko.com>
3Date: Fri, 30 Jan 2026 07:06:05 -0800
4Subject: [PATCH] rust/Cargo.toml: inhibit strip
5
6For OpenEmbedded builds, we want debug symbols which will be stripped
7later by us.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Tim Orling <tim.orling@konsulko.com>
12---
13 rust/Cargo.toml | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/rust/Cargo.toml b/rust/Cargo.toml
17index 097321f..8bde1fd 100644
18--- a/rust/Cargo.toml
19+++ b/rust/Cargo.toml
20@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
21 [profile.release]
22 lto = "fat"
23 codegen-units = 1
24-strip = true
25+strip = false
26 overflow-checks = false
27
28 [dependencies]
29--
302.43.0
31