aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/rustc-ndebug.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2023-02-22 13:30:58 -0800
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2023-04-21 15:18:56 +0530
commitc62989ce80c562c655795ffc6fc799b9a048dc59 (patch)
tree657bc94a2d4c2061c35a16e506c0c59309807692 /docs/markdown/snippets/rustc-ndebug.md
parentf80f40fa4feb0fa3f365f3debcbe2a43d7d125af (diff)
downloadmeson-c62989ce80c562c655795ffc6fc799b9a048dc59.zip
meson-c62989ce80c562c655795ffc6fc799b9a048dc59.tar.gz
meson-c62989ce80c562c655795ffc6fc799b9a048dc59.tar.bz2
rust: add support for b_ndebug
Rust has a `debug_assert!()` macro, which is designed to be toggled on the command line. It is on by default in debug builds, and off by default in release builds, in cargo. This matches what meson's b_ndebug option does in `if-release` mode.
Diffstat (limited to 'docs/markdown/snippets/rustc-ndebug.md')
-rw-r--r--docs/markdown/snippets/rustc-ndebug.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/rustc-ndebug.md b/docs/markdown/snippets/rustc-ndebug.md
new file mode 100644
index 0000000..e353865
--- /dev/null
+++ b/docs/markdown/snippets/rustc-ndebug.md
@@ -0,0 +1,6 @@
+## Rust now supports the b_ndebug option
+
+Which controls the `debug_assertions` cfg, which in turn controls
+`debug_assert!()` macro. This macro is roughly equivalent to C's `assert()`, as
+it can be toggled with command line options, unlike Rust's `assert!()`, which
+cannot be turned off, and is not designed to be.