aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-03-15 13:58:07 -0500
committeri509VCB <[email protected]>2025-03-15 13:58:07 -0500
commitc5b3cc5f4796f721cac502485dd21875d0e1cc4e (patch)
tree4978ec330ffbc4298ae02f373aa15bd7eea35e8e /examples
parent1dd129693318e15aa15cb50243c5be6547aa5159 (diff)
How about debug=0 for c1104?
Diffstat (limited to 'examples')
-rw-r--r--examples/mspm0c1104/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/mspm0c1104/Cargo.toml b/examples/mspm0c1104/Cargo.toml
index a56086e2a..3996939a5 100644
--- a/examples/mspm0c1104/Cargo.toml
+++ b/examples/mspm0c1104/Cargo.toml
@@ -19,14 +19,14 @@ panic-semihosting = "0.6.0"
19 19
20# The chip only has 1KB of ram, so we must optimize binaries regardless 20# The chip only has 1KB of ram, so we must optimize binaries regardless
21[profile.dev] 21[profile.dev]
22debug = 1 22debug = 0
23opt-level = "z" 23opt-level = "z"
24lto = true 24lto = true
25codegen-units = 1 25codegen-units = 1
26# strip = true 26# strip = true
27 27
28[profile.release] 28[profile.release]
29debug = 1 29debug = 0
30opt-level = "z" 30opt-level = "z"
31lto = true 31lto = true
32codegen-units = 1 32codegen-units = 1