You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the Zephyr KConfig `CONFIG_DEBUG` to determine if the Rust code
should be built as release or debug. This will better optimize the
code.
Applications can still set options for `[profile.release]` to enable
things such as run time assertions. For example, debug symbols can
still be enabled with `debug = "full"`, which attempts to insert
debugging information, although the optimizer can still make the code
challenging to debug.o
`debug-assertions = true`, and `overflow-checks = true` can still be
enabled in the release builds, for some additional checks.
Signed-off-by: David Brown <[email protected]>
0 commit comments